-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (86 loc) · 1.48 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
*{
margin: 0px;
padding:0px;
font-family: courier new;
}
/*
body{
background: #3e5669;
}
main{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%)
}
input{
border:3px solid #32e17c;
height:40px;
width:300px;
border radius: 50px;
padding:0px 10px;
}
*/
#sidebar {
position: fixed;
top:0;
left:-200px;
width: 200px;
height: 100%;
background: #242423;
transition:all 500ms;
text-align:center;
color: #f5f2f7;
border-bottom: 3px solid rgba(176, 181, 177,0.8);
border-right: 3px solid rgba(176, 181, 177,0.8);
}
#sidebar.active{
left:0px;
}
#sidebar ul li{
color:rgba(230,230,230,0.9);
list-style: none;
text-align: center;
border-bottom:1px solid rgba(100,100,100,0.3);
}
#sidebar .toggle-btn{
position: absolute;
left: 215px;
top: 50px;
}
#sidebar .toggle-btn span {
display: block;
width: 30px;
height: 5px;
background: #898f8b;
margin:5px 0px;
}
#sidebar .reviewbutton {
background-color: #242423; /* Green */
border: none;
color: white;
padding:15px 32px 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
#locationSearch{
text-align: center;
background-color: #242423;
color: white;
font-size: 16px;
}
.logo img{
padding: 230px 25px;
width: 50px;
display: flex;
text-align: center;
align-items: stretch;
height: 300px;
width: 150px;
}
#sidebar .thanku{
position: absolute;
top: 150px;
}