-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviews.css
127 lines (105 loc) · 1.78 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
body {
box-sizing: border-box;
padding: 0;
margin: 0;
}
.header-container {
height: 150px;
font-size: 18px;
font-family: sans-serif;
color: #5D6063;
/*border: 1px solid #FF0000;*/
}
a:link,
a:visited {
color: #5D6063;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.header {
position: fixed;
display: flex;
justify-content: space-between;
width: 100%;
height: 100px;
padding: 0px;
background: #FFFFFF;
/*border: 1px solid #9400D3;*/
}
.menu {
margin-top: 30px;
margin-right: 150px;
}
.menu > li {
display: inline;
margin-right: 50px;
}
.menu > li:last-of-type {
margin-right: 0;
}
.dropdown:hover .features-menu {
display: flex;
flex-direction: column;
background: #DEE2E3;
border-radius: 5px;
padding-top: 60px;
position: absolute;
top: -25px;
left: -30px;
z-index: 1;
}
.features-menu li {
list-style: none;
border-bottom: 1px solid #000000;
padding: 0 40px 10px 20px;
margin: 10px;
}
.features-menu li:last-of-type {
border-bottom: none;
}
.dropdown {
position: relative;
}
.dropdown > span {
z-index: 2;
position: relative; /* This is important! */
cursor: pointer;
}
.features-menu { /* Add this as a new rule */
display: none;
}
.logo {
width: 125px;
height: 100px;
}
.white-space {
background-color: #FFFFFF;
width: 25px;
height: 100px;
}
.footer-container {
display: flex;
justify-content: flex-end;
}
.footer {
height: 50px;
flex: 1;
text-align: center;
font-size: 40px;
font-family: 'Reenie Beanie', cursive;
}
h1 {
text-align: center;
font-size: 66px;
font-family: 'Reenie Beanie', cursive;
color: #5D6063;
}
.review-container {
padding: 20px;
height: 1200px;
font-size: 18px;
color: #5D6063;
font-family: monospace;
}