-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
56 lines (44 loc) · 1.06 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
@import url(https://fonts.googleapis.com/css?family=Lato:400,300,700);
font-family: 'Lato', sans-serif;
body {
margin: 0;
font: 16px/1.4em 'Lato', sans-serif;
}
/* Page content */
.content {
padding: 16px;
font: 16px/1.4em 'Lato', sans-serif;
}
/* Style the navbar */
#navbar {
overflow: hidden;
background-color: #13294b;
}
/* Navbar links */
#navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px;
text-decoration: none;
}
#navbar a:hover {
background-color: #ddd;
color: black;
}
#navbar a.active {
background-color: #E84A27;
color: white;
}
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
position: fixed;
top: 0;
width: 100%;
}
/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
padding-top: 60px;
}
a { color: #0455A4; } /* CSS link color from https://www.uillinois.edu/OUR/brand/color_palettes*/