-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibrary.css
135 lines (111 loc) · 1.8 KB
/
library.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
#AAABB8
#464866 light blue
#25274D dark blue
#2E9CCA light green
#29648A
*/
*{
margin: 0;
padding: 0;
}
body{
overflow-x: hidden;
}
nav{
background-color: #25274D;
font-family: "Noto Serif SC", serif;
}
.navbar-brand img {
height: 40px;
width: auto;
}
.dropdown button{
background-color: #2E9CCA;
}
.dropdown-item img{
height: 40px;
width: 40px;
}
.comp-main{
margin-top: 65px;
text-align: center;
margin-bottom: 65px;
}
.buttons{
text-align: center;
padding: 10px;
}
footer{
background-color: black;
color: white;
}
.info{
padding: 10px;
margin: 50px;
}
#scroll-top{
display: none;
}
#hidden, #hidden2{
display: none;
margin: 10px;
}
.search{
margin: auto;
}
/** Sidebar********************************************************************** */
.sidebar {
margin: 0;
padding: 0;
width: 200px;
background-color: #AAABB8;
position: fixed;
height: 100%;
overflow: auto;
}
.sidebar a {
display: block;
color: black;
padding: 16px;
text-decoration: none;
}
.sidebar a.active {
background-color: #29648A;
color: white;
}
.sidebar a:hover:not(.active) {
background-color: #2E9CCA;
color: white;
}
div.content {
margin-left: 200px;
padding: 1px 16px;
height: auto;
}
@media screen and (max-width: 700px) {
.sidebar a {
text-align: center;
float: none;
}
.sidebar {
width: 100%;
height: auto;
position: relative;
margin-top: 65px;
}
div.content {margin-left: 0;}
.comp-main{
margin-top: 10px;}
}
.header{
font-family: "Permanent Marker";
margin-bottom: 10px;
color: #2E9CCA;
text-shadow: 2px 0 0 black, -2px 0 0 black, 0 2px 0 black, 0 -2px 0 black, 1px 1px black, -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black;
}
.info h3{
text-decoration: underline;
margin-bottom: 20px;
font-weight: bold;
}