-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (64 loc) · 1.02 KB
/
style.css
File metadata and controls
72 lines (64 loc) · 1.02 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
* {
margin: 0;
padding: 0;
border-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body {
width: 100%;
background: #253047;
position: relative;
}
form{
display: flex;
flex-direction: row;
}
.container{
text-align: center;
color: white;
}
.button{
background: none;
border: none;
}
#menu {
background-color: #111827;
width: 300px;
height: 100%;
}
#menu .items .button{
text-decoration: none;
color: rgb(134, 141, 151);
font-weight: 300px;
}
#menu .logo {
display: flex;
align-items: center;
color: white;
padding: 30px 0 0 30px;
}
#menu .items {
margin-top: 40px;
}
#menu .items li {
list-style: none;
padding: 15px 0;
}
#menu .items li:hover {
background: #253047;
cursor: pointer;
}
#menu .items li i {
color: rgb(134, 141, 151);
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
font-size: 14px;
margin: 0 10px 0 25px;
}
#menu .items li a {
text-decoration: none;
color: rgb(134, 141, 151);
font-weight: 300px;
}