-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
99 lines (80 loc) · 1.4 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
body {
margin: 0;
text-align: center;
font-family: "Merriweather", serif;
color: #87805e;
background-color: #faeee0;
}
.dark-section {
background-color: #9e7777;
}
/* heading settings */
h1 {
font-family: "Playfair Display", serif;
/* font-family: 'Sacramento', cursive; only used in me.html and index.html*/
margin: 50px auto 0 auto;
font-size: 5.62rem; /*16px = 1em */
color: #6f4c5b;
font-weight: bold;
}
h2 {
font-family: "Montserrat", sans-serif;
font-size: 2.3rem;
color: #9e7777;
font-weight: normal;
}
h3 {
font-family: "Montserrat", sans-serif;
color: #f6f6f6;
}
p {
letter-spacing: 2px;
}
.light-title {
color: whitesmoke;
}
/* navigation bar */
.navbar {
background-color: #9e7777;
line-height: 2.2rem;
}
.navbar-brand {
font-family: "Ubuntu", sans-serif;
font-size: 2.5rem;
font-weight: bold;
}
.nav-item {
padding: 0 15px;
}
.nav-link {
font-size: 1.2rem;
font-weight: 300;
}
/* styles for section settings */
.section {
padding-top: 100px;
padding-bottom: 100px;
}
/* styles for the link in dark background*/
.dark-link:link {
color: #ecccb2;
}
.dark-link:hover {
color: gold;
}
.dark-link:visited {
color: #6f4c5b;
}
/* styles for the link in light background*/
.light-link {
text-decoration: underline;
}
.light-link:link {
color: #ac7088;
}
.light-link:hover {
color: #ecccb2;
}
.light-link:visited {
color: #9e7777;
}