-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
66 lines (55 loc) · 868 Bytes
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
#app {
width: 100%;
background-color: #F0F0F0;
height: 100vh;
}
h1 {
margin-bottom: 1rem;
font-size: 2rem;
color: #008762;
font-weight: 900;
}
hr {
border-top: 2px solid #008762;
margin: 1.5rem 0;
}
a {
color: #008762;
font-weight: 900;
text-decoration: none;
}
.navbar, footer {
background-color: black;
}
.navbar-brand span {
font-size: 1.75rem;
font-weight: bold;
line-height: 60px;
}
.info {
padding: 5rem 3rem;
border-radius: 10px;
text-align: center;
box-shadow: 3px 3px 10px 0 rgb(0 0 0 / 20%);
background-color: white;
}
div p:last-child {
margin-bottom: 0;
}
@media screen and (max-width: 992px) {
h1 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.navbar-brand span {
font-size: 1.25rem;
}
.info {
padding: 1rem;
}
}