-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (50 loc) · 970 Bytes
/
style.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
/* general css */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #000000;
color: #e3e3e3;
}
/* Main block */
.navSideAndContent { /* this lets the sidebar and content sit next to each other */
display: flex;
height: 100%;
}
/* Navigation sidebar */
.navSide {
background-color: #989898;
border-right: 2px solid #2c2c2c;
padding-right: 10px;
width: 250px;
position: fixed;
height: 100%;
margin-top: 0px;
}
.navSide p {
text-align: center;
color: #000000;
font-size: 1.5rem;
}
.navSide a {
text-align: center;
display: block;
color: #000000;
padding: 2.5px;
text-decoration: none;
/* text-decoration-thickness: 1px; */
font-size: 1.1rem;
}
.navSide a:hover {
opacity: 0.5;
}
/* content */
.content {
margin-left: 250px; /* compensate for the width of the side nav bar */
}
canvas {
margin-left: 300px;
/* width: 60%; */
background-color: #000000;
border: 0px solid #e3e3e3;
}