-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
68 lines (63 loc) · 1.03 KB
/
index.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
body {
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
height: calc(100vh - 90px);
}
header {
display: flex;
align-items: center;
justify-content: center;
font-size: 25px;
background-color: #6e83df;
height: 70px;
}
.container {
display: flex;
width: 100%;
height: 100%;
}
.sidenav {
height: 100%;
width: 160px;
z-index: 1;
background-color: rgb(66, 77, 238);
overflow-x: hidden;
padding-top: 20px;
}
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 18px;
color: #070404;
display: block;
cursor: pointer;
}
.sidenav a:hover {
color: #f1f1f1;
}
.sidenav.show {
display: block;
}
.main {
width: 100%;
padding: 0px 10px;
}
.main img {
max-height: 185px;
}
#menu-btn img {
height: 20px;
}
#menu-btn {
display:none;
}
@media screen and (max-width: 480px) {
.sidenav {
display:none;
}
#menu-btn {
display: block;
margin-right: 10px;
}
}