-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtemplate.css
More file actions
74 lines (57 loc) · 1.34 KB
/
template.css
File metadata and controls
74 lines (57 loc) · 1.34 KB
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
/* Styling the Body and text fonts*/
body {
background:white;
font-family: "Nunito", sans-serif;
}
/* Styling the Navbar*/
#mainNavbar {
font-size: 1.5rem;
font-weight: 100;
}
#mainNavbar .nav-link {
color: #000000;
font-size:1.3rem;
font-family: "Nunito", sans-serif;
text-align: center;
padding: 10px 15px;
}
#mainNavbar.navbar.scrolled .nav-link{
color:white;
}
#mainNavbar .nav-link:hover {
color: ;
font-size:22px;
font-weight:bold;
}
#mainNavbar .navbar-brand {
color: #373A36;
font-size: 1.5rem;
}
.navbar.scrolled {
background: #000000d5;
transition: background 300ms;
}
/* Adjusting the anchors to each sections so that the header is not hidden by the navbar. Try commenting the code below this specific comment to see how the section
header gets hidden by the navbar*/
#motivation, #data, #task, #analysis, #design, #visualization {
scroll-margin-top: 100px;
}
/*Copied from test.css example*/
#vis1 {
margin: auto;
width: 50%;
background-color: rgb(255, 255, 255);
padding: 10px;
margin-bottom: 20px;
display: flex;
justify-content: center;
}
#vis2 {
margin: auto;
width: 70%;
background-color: rgb(255, 254, 254);
padding: 10px;
margin-bottom: 20px;
display: flex;
justify-content: center;
}