-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.css
65 lines (54 loc) · 1013 Bytes
/
menu.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
body {
background-color: rgb(13, 1, 39);
margin: 0;
color: white;
}
header {
padding: 10px;
text-align: center;
}
h1{
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.content {
max-width: 800px;
margin: 0 auto;
}
#btn_open {
cursor: pointer;
transition: all 0.5s;
display: flex;
justify-content: left;
}
#btn_open:hover {
cursor: pointer;
}
#btn_close{
padding: 10px;
}
.menu {
position: fixed;
top: 0;
width: 250px;
height: 100%;
background-color: black;
}
.menu ul {
list-style: none;
}
.menu ul li {
display: block;
}
.menu ul li a {
transition: background 0.3s;
display: block;
color: white;
font-size: 19px;
text-decoration: none;
text-transform: uppercase;
padding: 10px 15px;
}
.effect {
transition: margin 0.4s;
}