-
Notifications
You must be signed in to change notification settings - Fork 5
/
custom.css
81 lines (68 loc) · 1.28 KB
/
custom.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
/* Change heading fonts and colors */
.bg-background {
background: #fff !important;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Open Sans", sans-serif !important;
font-weight: bold !important;
}
h1, h4 {
color: #ed9e0c !important;
}
h2, h5 {
color: #ed9e0c !important;
}
h3, h6 {
color: #ed9e0c !important;
}
...
.hero {
background-color: #fff;
height: 500px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #ed9e0c;
padding: 0 36px;
}
.hero-title {
font-size: 4rem;
color: #ed9e0c !important;
margin-bottom: 0px;
}
.hero-description {
font-size: 1rem;
margin-bottom: 30px;
}
.hero-button {
background-color: #d4e4ff;
color: #333;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease-in-out;
}
.hero-button:hover {
background-color: #d4e4ff;
color: #ebdcf7;
}
.middle-button-container {
text-align: center;
margin: 30px 0;
}
.middle-button {
background-color: #d4e4ff;
color: #333;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease-in-out;
}
.middle-button:hover {
background-color: #ed9e0c;
color: #333;
}