-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (38 loc) · 673 Bytes
/
style.css
File metadata and controls
48 lines (38 loc) · 673 Bytes
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
body{
font-family: sans-serif;
margin: 0px;
overflow: hidden;
color:white;
background: rgb(0, 26, 71);
}
.menu-item {
width: 250px;
padding: 10px 0px;
border: 1px solid rgba(1, 42, 112,0.5);
list-style-type: none;
}
.container {
display: flex;
}
.hover {
background: lightgray
}
.selected{
background: black
}
#visuals-menu{
padding: 0px;
margin: 0px;
}
#menu{
background: orange;
height: 1000px;
background-color: rgba(0, 20, 54);
}
#menu #header{
font-weight: bold;
font-size: 20px;
background-color: rgba(1, 42, 112,0.5);
text-align: center;
padding: 10px;
}