-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
97 lines (83 loc) · 1.32 KB
/
stylesheet.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
87
88
89
90
91
92
93
94
95
96
97
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
html,
body {
margin: 0;
height: 100%;
}
body {
background-color: #0f0f0f;
}
#blob {
height: 300px;
aspect-ratio: 1;
position: fixed;
border-radius: 50%;
translate: -50% -50%;
background: linear-gradient(to right, rgb(231, 9, 9), rgb(218, 178, 3));
animation: rotate 5s linear infinite;
filter: blur(300px);
z-index: -1;
}
@keyframes rotate {
from {
rotate: 0deg;
scale: 1 1;
}
50% {
scale: 1.15 1.15;
}
to {
rotate: 360deg;
scale: 1 1;
}
}
main {
text-align: center;
padding: 1em;
max-width: 240px;
margin: 0 auto;
}
h1 {
color: #0f0f0f;
text-transform: uppercase;
font-size: 4em;
font-weight: 100;
}
nav {
height: 7.5em;
padding: 0 4em;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
display: flex;
font-family: "Playfair Display", serif;
font-size: 2.25rem;
font-weight: 700;
text-transform: lowercase;
color: white;
margin-top: -0.5rem;
letter-spacing: -0.05em;
text-decoration: none;
}
@media (min-width: 640px) {
main {
max-width: none;
}
}
#link1 {
position: fixed;
top: 30%;
right: 30%;
}
#link2 {
position: fixed;
top: 40%;
right: 70%;
}
#link3 {
position: fixed;
top: 65%;
right: 20%;
}