-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
94 lines (92 loc) · 1.45 KB
/
main.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
88
89
90
91
92
93
94
h1 {
font-size: 2.25rem;
}
h3 {
font-size: 1.25rem;
}
.bi {
width: 1em;
height: 1em;
vertical-align: -0.125em;
fill: currentcolor;
}
.footer {
font-size: .75rem;
}
.home .buttons {
justify-content: space-around;
}
.home .section {
position: relative;
z-index: 10;
padding-top: 5rem;
padding-bottom: 5rem;
}
.home .section .container {
padding-left: 2rem;
padding-right: 2rem;
margin-left: auto;
margin-right: auto;
}
.home .section.less-padding {
padding-top: 1rem;
padding-bottom: 1rem;
}
.home .btn-custom {
border-width: 2px;
border-color: #535251;
margin: .75rem;
padding: 1rem 2rem;
text-transform: uppercase;
color: #535251;
font-size: 1.125rem;
font-weight: 400;
transition: all .1s linear;
width: 30%;
}
.home a.btn-custom:hover {
color: #f8f9fa;
background-color: #535251;
}
.w-35 {
width: 35%!important;
}
.z-10 {
z-index: 10;
}
html[data-bs-theme="dark"] .hide-theme-dark {
display: none !important;
}
html[data-bs-theme="light"] .hide-theme-light {
display: none !important;
}
@media (prefers-color-scheme: dark) {
.only-on-dark {
display: initial;
}
.only-on-light {
display: none;
}
}
/* Utilities */
.bg-dark-yellow {
background-color: #f7a82c;
}
.bg-yellow {
background-color: #fcc92d;
}
.font-normal {
font-weight: 400;
}
.leading-normal {
line-height: 1.5;
}
.text-dark-yellow {
color: #f7a82c;
}
.text-yellow {
color: #fcc92d;
}
.text-shrink {
max-width: 50rem;
}