-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.scss
76 lines (61 loc) · 926 Bytes
/
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
::selection {
color: white;
background: #0044ff;
}
.emoji {
font-family: 'Noto Color Emoji', sans-serif;
}
$yellow: #FFD933;
$red: #FC4442;
main {
padding-top: calc(1.5rem + 97px);
}
@media print {
main {
padding-top: calc(1.5rem);
}
}
.yellow {
color: $yellow;
}
.red {
color: $red;
}
.navbar {
box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.3);
}
hr {
border: 1px solid #8785854a;
}
@import "bootstrap/scss/bootstrap.scss";
@include color-mode(dark) {
.navbar {
--bs-navbar-color: white;
--bs-navbar-hover-color: #FFD933;
--bs-navbar-active-color: #FFD933;
}
.resume {
#full-name {
color: white;
}
h2 {
color: #fc4442;
}
.subtitle {
color: #FFD933;
}
}
}
@include color-mode(light) {
.navbar {
--bs-navbar-color: #B22222;
}
.resume {
h2 {
color: #040084;
}
.subtitle {
color: #1874D2;
}
}
}