-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.scss
99 lines (83 loc) · 1.69 KB
/
main.scss
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
95
96
97
98
99
body {
background-image: url('/img/background.png');
background-color: rgb(23, 13, 39);
background-size: 100% auto;
background-repeat: no-repeat;
background-position: 50% 0;
}
@media (max-width: 992px) {
body {
background-size: auto 100%;
}
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
th,
tr {
color: white !important;
font-family: 'Open Sans', 'Calibri', sans-serif;
}
a {
color: rgb(255, 203, 61) !important;
}
header {
font-size: 5rem;
font-family: 'Ringbearer', serif;
text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
&.header-medium {
font-size: 4rem;
}
&.header-small {
font-size: 2.5rem;
}
overflow: hidden;
}
h2 {
font-weight: 600;
}
.text-muted {
color: rgb(182, 182, 182) !important;
}
.color-yellow {
color: rgb(248, 203, 78) !important;
}
.bg-none {
background-color: transparent !important;
outline: none;
}
.bg-dark {
background-color: rgb(0, 0, 0, 0.8) !important;
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
backdrop-filter: blur(10px);
}
@font-face {
font-family: 'Ringbearer';
src: url('./public/fonts/ringm___-webfont.woff2') format('woff2'),
url('./public/fonts/ringm___-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Open Sans';
src: url('./public/fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Open Sans';
src: url('./public/fonts/OpenSans/OpenSans-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Open Sans';
src: url('./public/fonts/OpenSans/OpenSans-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}