-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
87 lines (77 loc) · 1.36 KB
/
index.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
/*
Color Palette:
White: #FFFFFF
Rich Black FOGRA: #00171F
Prussian Blue: #003459
CG Blue: #007EA7
Carolina Blue: #00A8E8
*/
body {
margin: auto;
text-align: center;
font-size: 1.5rem;
font-family: "Arial";
padding-bottom: 50px;
}
h1 {
font-family: "Gruppo";
font-size: 4rem;
color: #00171f;
margin-top: 2%;
}
img {
display: flex;
justify-content: center;
align-items: center;
width: 200px;
margin: 2rem;
}
div {
display: flex;
justify-content: center;
align-items: center;
}
h3 {
font-family: "Gruppo";
font-size: 2rem;
color: #00171f;
}
hr {
width: 25%;
color: #00171f;
margin-top: 1.5rem;
margin-bottom: 1.5rem;
}
.button {
margin: auto;
display: block;
justify-content: center;
align-items: center;
background: #00a8e8 !important;
box-shadow: inset 0 -5px 0 0 rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.14);
color: white !important;
border: none !important;
font-size: 2rem;
text-decoration: none;
border-radius: 1rem;
height: 5.75rem;
width: 32rem;
max-width: 90%;
margin-left: auto;
margin-right: auto;
outline: none;
cursor: pointer;
padding-top: 1.5rem;
}
.button:hover {
background-color: #003459 !important;
}
.button:active {
background-color: #003459 !important;
border: 1px solid #003459;
transform: translateY(4px);
box-shadow: none;
}
span {
font-size: 1.25rem;
}