-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
102 lines (77 loc) · 1.47 KB
/
Copy pathindex.css
File metadata and controls
102 lines (77 loc) · 1.47 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');
:root {
--100: hsl(0, 0%, 0%);
--200: hsl(0, 0%, 8%);
--300: hsl(0, 0%, 10%);
--400: hsl(0, 0%, 15%);
--500: hsl(0, 0%, 20%);
--600: hsl(0, 0%, 25%);
--700: hsl(0, 0%, 30%);
--800: hsl(0, 0%, 35%);
--900: hsl(0, 0%, 40%);
--975: hsl(0, 0%, 82%);
}
* {
font-family: 'Comfortaa', cursive;
}
body {
background-color: var(--300);
width: 100%;
height: 100vh;
margin: 0;
padding: 0;
border: 0;
outline: 0;
display: flex;
flex-direction: column;
}
.header {
display: flex;
text-align: center;
background-color: var(--300);
flex: 0 0 auto;
width: 100%;
height: 90px;
justify-content: center;
align-items: center;
z-index: 1100;
}
.headerInfo {
color: var(--975);
text-shadow: 0 0 4px var(--975);
}
.entirety {
position: relative;
flex: 1 1 auto;
background-color: var(--300);
}
.entirety > div {
box-sizing: border-box;
background-color: var(--500);
position: absolute;
width: 50%;
height: 50%;
border: 1px solid var(--300);
z-index: 0;
transition: width 0.5s,
height 0.5s,
border-color 0.5s,
z-index 0.75s,
box-shadow 0.25s linear 0.5s;
}
.intro {
left: 0;
top: 0;
}
.loadout {
right: 0;
top: 0;
}
.guides {
left: 0;
bottom: 0;
}
.author {
right: 0;
bottom: 0;
}