-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
42 lines (38 loc) · 772 Bytes
/
main.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
@font-face {
font-family: "REM";
src: url('REM-Bold.ttf');
}
html, body {
margin: 0;
padding: 0;
overflow: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
background-color: #343a40;
background: linear-gradient(180deg, rgb(52, 58, 64) 50%, rgb(11, 13, 14) 50%);
}
#text {
position: relative;
top: calc(50% - 7rem);
width: 100%;
font-family: "REM";
font-size: 8rem;
line-height: 1.05;
color: rgb(11, 13, 14);
text-shadow: 2px 2px 4px rgba(11, 13, 14, 0.8);
cursor: default;
}
#quote {
position: absolute;
right: 0.25vw;
bottom: 0.25vh;
display: block;
font-family: var(--typeface);
font-size: 1rem;
color: var(--lt);
opacity: 0.2;
cursor: default;
}