-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (44 loc) · 730 Bytes
/
style.css
File metadata and controls
54 lines (44 loc) · 730 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
49
50
51
52
53
54
/* styles.css */
/* Body text */
body {
font-family: system-ui, sans-serif;
line-height: 1.6;
}
/* Sidebar */
.sidebar {
background-color: #033C5A !important; /* dark blue */
color: white;
}
.sidebar a {
color: #f8f9fa !important;
}
.sidebar a:hover {
background-color: #05507a !important;
color: #ffffff !important;
}
/* Links in content */
a {
color: #0190DB;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Tables */
table {
border-collapse: collapse;
margin: 1em 0;
}
table th, table td {
border: 1px solid #ddd;
padding: 6px 10px;
}
table th {
background-color: #f2f2f2;
font-weight: bold;
}
/* Page footer */
.page-footer {
font-size: 0.9em;
color: #888;
}