-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
158 lines (130 loc) · 2.69 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
.rating {
color: #aaa;
text-decoration: none;
font-size: 14px;
}
.ratingcol{
color: orange;
text-decoration: none;
font-size: 14px;
}
body, h6{margin: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif ;
}
.promo{
position: fixed;
z-index: 8;
width: 100%;
background-color: #EC4C4C;
text-align: center;
padding: 7px 0px;
}
.promo h6{
color: white;
font-weight: 500;
font-size: 1rem ;
}
.hero-content{
height: 100vh;
display: flex;
background-color:#EADCA6 ;
overflow: hidden;
}
.hero-right{
width: 40%;
background-color: #EEB969;
position: relative;
}
.hero-right img{
position: absolute;
}
.hero-right img:first-child{
position: absolute;
width: 130%;
top: 30%;
right: -30;
}
.hero-right img:last-child{
position: absolute;
width: 90%;
top: 30%;
}
.hero-left{
width: 60%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
padding: 100px 0px 100px 100px;
}
.hero-left h1{
font-size: 80px;
font-weight: 800;
}
.hero-left h5{
margin-top: 10px;
font-size: 26px;
font-weight: 300;
width: 80%;
}
.hero-left p{
font-weight: 600;
color: #DF1E1E;
font-size: 40px;
}
.hero-left button{
background-color: #699EEE;
border-radius: 5px;
color: white;
border-style: none;
padding: 7px 14px;
margin-top: 30px;
font-size: 19px;
}
.tag{
display: inline-block;
color: white;
background-color: #C36A2D;
padding: 7px 17px;
border-radius: 5px;
}
@media screen and (max-width: 1000px){
.hero-content{
flex-direction: column;
height: 1000px;
}
.hero-left{
width: 100%;
padding: 100px 0px 100px 40px;
}
.hero-left h1{
font-size: 60px;
}
.hero-right{
width: 100%;
height: 100%;
}
.hero-right img:first-child{
width: 100%;
top: 20;
right: 0;
}
.hero-right img:last-child{
width: 90%;
top: 0;
}
}
.btn-bg{
background-color: lightgray;
}
.btn-bg:hover{
background-color: #699EEE;
color:white
}
footer a{
color: blanchedalmond;
text-decoration: none;
}
footer a:hover{
text-decoration: underline;
}