-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (47 loc) · 870 Bytes
/
style.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
:root {
--main-bg-color: rgb(229, 77, 66);
}
h1,
h2,
h3 {
font-family: 'Amatic SC', cursive !important;
}
p,
a {
font-weight: 100;
font-family: 'Raleway', sans-serif !important;
}
.uk-text-medium {
font-size: 1.25rem;
line-height: 1.5;
}
/* Override uk-* components*/
a:hover {
color: var(--main-bg-color);
}
.uk-link-default {
color: var(--main-bg-color);
}
.uk-link-default:hover {
color: var(--main-bg-color);
}
.uk-button-default {
color: var(--main-bg-color);;
border-color: var(--main-bg-color);
background-color: transparent;
transition: background-color 0.7s ease;
}
.uk-button-default:hover {
color: white;
border-color: var(--main-bg-color);
background-color: var(--main-bg-color);
}
/* Contact me */
section#contact-me {
position: relative;
}
.scroll-to-top {
position: absolute;
right: 20px;
bottom: 20px;
}