-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviews.css
167 lines (138 loc) · 2.32 KB
/
reviews.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
@media all and (min-width:500px){
*{
box-sizing: border-box;
}
body{
background:white;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
}
header{
position:fixed;
top:0;
width:100%;
}
.menu-bar{
background:#5FAC8C;
text-align: center;
width:100%;
height: 15vh;
text-decoration: bold;
position:sticky;
}
.menu-bar img{
float:left;
}
.menu-bar ul{
display:inline-flex;
list-style-type: none;
margin-top:10px;
width:80%;
margin-left:120px;
}
.menu-bar ul li{
width:150px;
margin:10px;
padding:15px;
}
.menu-bar ul li a{
text-decoration:none;
color:rgb(14, 13, 13);
}
.menu-bar .fa{
margin-right:7px;
}
.tab:hover{
background-color:rgb(131, 126, 126);
border-radius: 3px;
color:white;
cursor:pointer;
}
button:hover{
cursor: pointer;
}
.submenu1{
display:none;
margin-left:10px;
}
.submenu1 p{
cursor:none;
}
.menu-bar ul li:hover .submenu1{
display:block;
position:absolute;
background:darkgrey;
margin-top:15px;
margin-left:-15px;
}
.menu-bar ul li:hover .submenu1 ul{
display:block;
margin:-10px;
}
.menu-bar ul li:hover .submenu1 ul li{
width:150px;
padding:10px;
}
main{
width:80%;
background:grey;
box-sizing: border-box;
padding:30px 30px 30px 30px;
margin:120px 20px 20px 135px;
display:flex;
justify-content:space-between;
border-radius:5px;
}
footer{
background:#5FAC8C;
box-sizing: border-box;
width:100%;
height:95vh;
padding:30px 30px 30px 30px;
}
.help ul{
list-style-type:none;
}
.help ul a{
color:white;
text-decoration:none;
}
.help ul a:hover{
color:black;
}
.stayconnected ul{
list-style-type:none;
}
.stayconnected ul li{
display:inline-flex;
}
.stayconnected ul li img:hover{
border-radius:7px;
box-shadow:2px 2px 2px 2px;
}
.top{
display:inline-flex;
width:95%;
margin-left:50px;
margin-bottom:20px;
justify-content:space-between;
}
.bottom{
box-sizing: border-box;
width:90%;
margin-left:50px;
}
.partners{
width:100%;
display:inline-flex;
padding:20px 20px 20px 20px;
margin-left:50px;
text-align:center;
}
.partners img{
margin:-10px 20px 20px 70px;
}
.partners img:hover{
box-shadow: 2px 2px 2px 2px;
}
}