forked from JaxLUG/jaxlug.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
49 lines (39 loc) · 969 Bytes
/
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
body {
font-family: "Lato", sans-serif;
}
.sidenav {
width: 20%;
position: fixed;
z-index: 1;
top: 2px;
left: 10px;
background: #eee;
overflow-x: hidden;
padding: 8px 0;
}
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 15px;
color: #2196F3;
display: block;
}
.sidenav a:hover {
color: #064579;
}
.main {
margin-left: 21%; /* Same width as the sidebar + left position in px */
font-size: 20px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
/* this will make the FOOTER links highlight as you hover */
li a {display: block; color: #000; padding: 8px 16px; text-decoration: none;}
li a.active { background-color: #234232; color: white;}
li a:hover:not(.active) { background-color: #555; color: white;}