-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
77 lines (68 loc) · 1.55 KB
/
styles.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
77
@import 'reset.css';
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@font-face {
font-family: Coca Cola;
src: url(assets/Coca\ Cola\ ii.ttf);
}
html,
body {
background: #ec1f26;
// background: #242424;
color: white;
height: 100%;
background-size: 100%;
}
.center {
display: flex;
flex-direction: column;
align-content: center;
align-items: center;
text-align: center;
height: 100%;
h1 {
margin-top: 5rem;
font-size: 10em;
font-family: 'Coca Cola';
color: white;
text-shadow: 0px 1px 0px hsla(0, 0%, 60%), 0px 2px 0px hsla(0, 0%, 53%),
0px 3px 0px hsla(0, 0%, 47%), 0px 4px 0px hsla(0, 0%, 40%),
0px 5px 0px hsla(0, 0%, 33%), 0px 6px 0px hsla(0, 0%, 27%),
0px 7px 0px hsla(0, 0%, 20%), 0px 8px 7px #6e1f1f;
span:nth-child(1) {
margin-right: 1.5em;
}
}
}
#get-started {
position: relative;
top: 40%;
width: clamp(10em, 15%, 25em);
background-color: white;
border: none;
border-radius: 15px;
font-size: 1.1em;
padding: 0.1em;
}
#scroll-message {
position: absolute;
top: 48%;
left: 4em;
}
#render-container {
width: 100%;
height: 100%;
position: absolute;
top: 0;
// top: 5em;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
canvas {
width: 100%;
height: 100%;
outline: none;
margin: auto;
transform: scale(1.15);
}
}