-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (64 loc) · 1.38 KB
/
styles.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* =================
ROOT:
CSS VARIABLES HERE
================= */
/* Typography variables */
/* Colour Variables */
:root {
/* Typography variables */
/* Colour Variables */
--main-bg-colour: hsl(222, 87%, 6%);
--secondary-bg-colour: hsl(187, 91%, 18%);
--main-accent-colour: hsl(150, 17%, 68%);
--secondary-accent-colour: hsl(48, 41%, 83%);
--alice-blue-colour: hsl(202, 50%, 59%);
}
/* HTML defaults */
html {
scroll-behavior: smooth;
}
/* =================
BODY
================= */
@font-face {
font-family: 'Alice in Wonderland';
src: url('assets/fonts/Alice_in_Wonderland_3.ttf');
}
/* elements */
body {
background-color: var(--main-bg-colour);
color: var(--secondary-accent-colour);
font-family: 'Alice in Wonderland';
}
header {
overflow: hidden;
}
/* ids */
/* classes */
a.skip-to-main {
position: absolute;
color: rgb(94, 94, 245);
border-radius: 0 0 0.1rem 0.1rem;
background-color: white;
padding: .25rem .5rem;
left: 0.5rem;
transform: translateY(-200%);
transition: transform 200ms ease-in;
}
a.skip-to-main:focus {
transform: translateY(0%);
}
/* =================
TYPOGRAPHY
================= */
/* elements */
/* ids */
/* classes */
/* =================
LAYOUT
================= */
/* elements */
/* ids */
/* classes */
/* Navigation */
/* Media Queries */