-
Notifications
You must be signed in to change notification settings - Fork 7
/
styles.css
104 lines (99 loc) · 1.63 KB
/
styles.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
body {
box-sizing:border-box;
margin:0px;
font-family: PT Sans, DejaVu Sans, Arial, sans;
font-size:20px;
}
.container {
position: fixed;
width: 100%;
height: 100%;
}
.container-inner {
position: relative;
display: flex;
width: 100%;
height: 100%;
}
.left-sidebar {
width:30%;
overflow: auto;
max-width: 250px;
background-color: #4242EA;
}
.left-sidebar > div {
padding:15px;
}
.navigation-links {
padding-left: 0px;
padding-right: 0px;
}
.navigation-link-item {
position: relative;
padding: 5px 15px;
}
.navigation-link-item:before {
position: absolute;
content: '';
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(to right,rgba(255,255,255,.03) 0,rgba(255,255,255,1.1) 50%,rgba(255,255,255,.03) 100%);
}
.navigation-link-item a {
color: white;
text-decoration: none;
transition: color 0.3s ease-in-out;
}
.navigation-link-item a:visited {
color: white;
}
.navigation-link-item a:hover {
color: black;
}
.content {
width:100%;
overflow: auto;
padding:40px;
}
.content > * {
max-width: 1024px;
}
.home-anchor {
width: 100%;
background-color:#EDFF00;
color:black;
}
.home-anchor a:link {
color:black;
text-decoration: none;
}
.home-anchor a:link {
color: white;
}
.home-anchor a:visited {
color: white;
}
.home-anchor a:hover {
color: white;
}
.home-anchor a:active {
color: white;
}
.completed {
text-decoration: line-through;
}
.image-label {
font-size:8px;
}
pre {
box-shadow: 0 2px 4px rgba(0,0,0,0.15),0 0 3px rgba(0,0,0,0.15);
margin: 40px 0;
}
code {
background-color: #eff0f1;
}
ol, ul {
padding-left: 50px;
}