-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·57 lines (51 loc) · 1.21 KB
/
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
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
@font-face {
font-family: 'Montserrat';
src: url('fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
font-weight: 100 900;
font-style: normal;
}
@font-face {
font-family: 'Montserrat';
src: url('fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
font-weight: 100 900;
font-style: italic;
}
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Montserrat', sans-serif;
overflow: hidden;
position: relative;
background: conic-gradient(from 90deg at 50% 50%, #001cf5, #4874f7, #001cf5);
}
#base-message {
font-size: 3vw;
max-width: 90%;
color: white;
white-space: nowrap;
overflow: hidden;
text-align: center;
position: relative;
}
#link-container {
position: absolute;
bottom: 20px;
width: 100%;
text-align: center;
}
#bottom-link {
color: white;
text-decoration: none;
font-size: 1.5vw;
}
@media (max-width: 768px) {
#bottom-link {
font-size: 3vw;
}
}