-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
75 lines (59 loc) · 1.08 KB
/
app.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
body {
box-sizing: border-box;
background-color: #f5d9d5;
font-family: Nunito, sans-serif;
overflow-x: hidden;
}
/* navbar */
#main-nav {
font-weight: 200;
font-size: 1.5rem;
}
#main-nav .navbar-brand {
color: #ec3a48;
font-size: 1.5rem;
}
#main-nav .nav-link {
color: white;
}
#main-nav .nav-link:hover {
color: #ec3a48;
}
/* main section */
.text-section h2 {
color: #ec3a48;
font-size: 2.5rem;
font-weight: 100;
}
.text-section p {
color: #f49cc0;
line-height: 2;
font-size: 1.125rem;
font-weight: 100;
}
.content {
margin-top: 100px;
}
#heading-group span {
color: #ec3a48;
}
#heading-group h1 {
text-transform: uppercase;
font-size: 4rem;
font-weight: 100;
color: white;
}
#main-nav.scrolled {
background-color: red !important;
}
@media (max-width: 1245px) {
#heading-group h1 {
font-size: 3rem;
}
h2 {
font-size: 2rem;
}
#main-nav {
background-color: #f49cc1b0;
}
}