-
Notifications
You must be signed in to change notification settings - Fork 0
/
below_image.css
198 lines (158 loc) · 3.12 KB
/
below_image.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
.header{
height: 90px;
display: flex;
align-items: center;
justify-content: space-between;
width:1300px;
margin-left: auto;
margin-right: auto;
border-bottom-width:1px;
border-bottom-style:solid;
border-bottom-color:rgb(219, 219, 222);
}
.left{
}
.middle{
background-color: orange;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 25px;
}
.marquee-class{
width: 800px;
display: flex;
align-items: center;
}
.marquee-img{
width:30px;
}
.marquee-text{
font-size: 20px;
color:black;
vertical-align: top;
}
.img{
width:60px;
}
.right{
}
.emergency{
padding-top: 8px;
padding-bottom: 8px;
width: 180px;
height:60px;
background-color: rgb(230, 4, 4);
box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
border: none;
/* border-radius:8px; */
color: white;
font-size: 12px;
font-weight: 700;
transition: color 0.15s;
cursor: pointer;
}
.emergency:hover{
background-color: rgb(101, 132, 244);;
color:black;
}
.email{
padding-top: 8px;
padding-bottom: 8px;
/* padding:8px 20px 8px 20px; */
width: 180px;
height:60px;
background-color: rgb(51, 185, 234);
border: none;
/* border-radius:8px; */
color:black;
font-size: 12px;
font-weight: 700;
transition: color 0.15s;
cursor: pointer;
}
.email:hover{
color:white;
background-color: rgb(101, 132, 244);
}
*{
margin:0;
padding:0;
box-sizing: border-box;
}
.menu-bar{
background-color: white;
height: 80px;
width:1380px;
margin-left: auto;
margin-right: auto;
position:relative;
align-items: center;
}
.menu-bar ul{
display: flex;
list-style: none;
justify-content: space-between;
}
.menu-bar ul li{
width:300px;
position:relative;
padding:10px 30px;
text-align: center;
}
.menu-bar ul li a{
font-size: 13px;
font-weight: 600;;
color:black;
text-decoration: none;
}
.menu-bar ul li a:hover{
color:rgb(0, 124, 157);
}
.dropdown-menu{
display:none;
width:230px;
z-index: 999;
border-width: 1px;
border-style: solid;
border-color: rgba(0, 0, 0, 0.175);
box-shadow: 0px 0px 20px rgba(106, 134, 143, 0.47);
border-radius: 6px;
}
.dropdown-menu ul{
}
.dropdown-menu ul li{
margin: 0;
font-size: 14px;
}
.menu-bar ul li:hover .dropdown-menu{
display: block;
position: absolute;
left:10px;
top:100%;
background-color: white;
}
.menu-bar ul li:hover .dropdown-menu ul{
display:block;
}
.menu-bar ul li:hover .dropdown-menu ul li{
width: 220px;
}
.big-container{
display:grid;
grid-template-columns: 1fr 1fr;
margin-left: 100px;
row-gap: 60px;
}
.forms{
width: 60%;
border: 2px outset;
margin-left: 20%;
text-align: center;
}
button{
margin: 15px;
}
.start{
position: relative;
align-items: first baseline;
}