-
Notifications
You must be signed in to change notification settings - Fork 3
/
common.css
65 lines (54 loc) · 889 Bytes
/
common.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
:root {
--color-yellow: #c68409;
--color-red: #eb001b;
--color-gray: #262626;
--color-grad: #422f0b;
}
body {
font-family: "Raleway", sans-serif;
margin: 0px;
background-color: #262626;
}
.text-white {
color: white !important;
}
.background-yellow {
background-color: var(--color-yellow);
}
.background-red {
background-color: var(--color-red);
}
.breadcrumb {
min-height: 40px;
display: flex;
align-items: center;
gap: 6px;
padding-left: 76px;
padding-top: 30px;
}
.breadcrumb > a {
text-decoration: none;
}
.breadcrumb > a > img {
width: 30px;
height: 30px;
}
.breadcrumb > p {
color: gray;
font-weight: bold;
font-style: italic;
margin: 0px;
}
.breadcrumb > hr {
background-color: gray;
}
@media (max-width: 550px) {
.breadcrumb {
padding: 30px;
}
}
@media (max-width: 768px) {
.breadcrumb {
padding: 30px;
}
}