-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
47 lines (39 loc) · 1.04 KB
/
style.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
@import url("//fonts.googleapis.com/css?family=Lobster|Cabin:400,700");
/*Use Courier font throughout app*/
@import url('https://fonts.googleapis.com/css?family=Cinzel&display=swap');
h1 {
font-family: 'Lobster', cursive;
font-weight: 500;
line-height: 1.1;
color: #ad1d28;
}
body {
background-color: #F5F5F2;
}
body {
font-family: 'Cinzel', sans-serif;
color: rgba(0,0,0,0.8);
font-weight: 400;
line-height: 1.58;
letter-spacing: -.003em;
font-size: 1.6rem;
padding: 50px;
}
bodyStyle : 'background:none', // Removes the default white background
/*Colour hyperlinks*/
a {
color: #800080;
}
a:hover {
color: #ad1d28;
}
/*Colour of nav bar Title*/
.navbar-default .navbar-brand{
color: #ad1d28;
}
/*Colour of nav bar tabs when hovering and active*/
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
color: #ad1d28;
}