-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.scss
65 lines (51 loc) · 1.08 KB
/
global.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
@import './src/styles/colors';
body {
padding: 0;
margin: 0;
background-color: $indigo-dark;
}
@font-face {
font-family: 'Bear';
src: url('./src/assets/Fonts/FjallaOne-Regular.ttf');
}
@font-face {
font-family: 'CodePro';
src: url('./src/assets/Fonts/SourceCodePro-Black.ttf');
}
@font-face {
font-family: 'CodeLight';
src: url('./src/assets/Fonts/SourceCodePro-Regular.ttf');
}
/* Vertical timeline dependency styles configuration */
.vertical-timeline-element-content {
font-family: 'Bear';
background-color: $background !important;
}
.vertical-timeline-element-content-arrow {
border-right-color: $background !important;
}
.vertical-timeline-element-date {
color: $indigo-light;
font-size: 20px !important;
}
.vertical-timeline-element-title,
.vertical-timeline-element-subtitle {
color: $indigo-medium;
}
.vertical-timeline-element-icon {
background-color: $indigo-dark;
}
@media (max-width: 1169px) {
.vertical-timeline-element-date {
color: $indigo-dark;
}
}
a:link {
color: white;
}
a:visited {
color: white;
}
a:active {
color: white;
}