-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.css
executable file
·82 lines (64 loc) · 1.02 KB
/
master.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
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap');
/* General Styles */
* {
box-sizing: border-box;
font-family: 'Nunito', sans-serif;
}
body {
letter-spacing: 2px;
background: #f5d9d5;
}
.blurb h2 {
color: #ea1c2c;
}
.blurb p {
color: #ed5f91;
font-weight: 100;
font-size: 1.125rem;
line-height: 2;
}
/* Navbar Styles */
#nav {
font-weight: 400;
font-size: 1.3rem;
}
#nav .navbar-brand {
color: #ea1c2c;
font-size: 1.5rem;
}
#hamburger .nav-link {
color: #fff;
font-weight: 200;
}
#hamburger .nav-link:focus,
#hamburger .nav-link:hover {
color: #ea1c2c;
}
.navbar.scrolled {
background: rgb(222, 192, 222);
transition: background 800ms;
}
/* Main Styles */
/* Section One */
#main {
position: absolute;
top: 0;
z-index: -1;
}
h1 span {
color: #ea1c2c;
}
#main h1 {
font-weight: 200;
}
@media (max-width: 1200px) {
#main h1 {
font-size: 2rem;
}
.blurb h2 {
font-size: 1.5rem;
}
.blurb p {
font-size: 1rem;;
}
}