forked from andrewcylaw/HackHarvard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpave.css
More file actions
125 lines (103 loc) · 1.58 KB
/
pave.css
File metadata and controls
125 lines (103 loc) · 1.58 KB
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
* {
margin: 0;
padding: 0
}
body {
margin-top: 0;
font-family: 'Roboto', sans-serif;
}
/* Menu bar */
header {
box-sizing: border-box;
width:100%;
height: 60px;
z-index: 1005;
position: fixed;
background: #3a3a3a;
padding-top: 10px;
padding-bottom: 15px;
color: white;
text-align: center;
font-size: 200%;
}
a {
color: white;
text-decoration:none;
}
/* button that opens side nav */
#openSideNav {
position: fixed;
z-index: 1008;
padding-left: 8px;
padding-top: 8px;
}
::-webkit-scrollbar {
width: 0px; /* remove scrollbar space */
}
/* Size of google maps */
#map {
height: 100vh;
width: 100%;
}
/* side menu */
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1020;
top: 0;
left: 0;
background-color: #3a3a3a;
overflow-x: hidden;
padding-top: 60px;
transition: 0.3s;
}
/* X for sidenav */
.closebtn {
position: absolute;
top: 20px ;
right: 25px;
font-size: 36px;
margin-left: 50px;
z-index: 1004;
}
/* Sidenav elements */
.downArrow {
display:block;
margin: 10px auto;
}
p {
display:block;
margin-left:10px auto;
margin-right:10px auto;
}
h3 {
font-weight: 400;
color: white;
padding-left: 15px;
}
input[type=text], p {
display: block;
margin: 10px auto;
padding: 12px 20px;
}
#addLoc {
font-weight: 400;
color: white;
padding-left: 15px;
}
hr {
width: 80%;
border: 0;
height: 1px;
background: #828282;
color: #828282;
margin-right: 10%;
margin-left: 10%;
}
#paveIt {
display:block;
margin: 10px auto;
padding: 12px 20px;
background-color: color: #828282;
}