-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (87 loc) · 1.4 KB
/
styles.css
File metadata and controls
99 lines (87 loc) · 1.4 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
header {
display: flex;
justify-content: center;
padding-top: 1rem;
}
header button {
border-color: black;
border-width: .1rem;
border-radius: 5rem;
}
body {
margin: 0;
}
body div {
height: 100vh;
width: 100%;
}
footer {
position: sticky;
}
.text {
align-items: center;
display: flex;
font-family: 'Lucida Console', 'Courier New', monospace;
font-size: clamp(1rem, -0.875rem + 8.333vw, 3.5rem);
justify-content: center;
}
.text span {
color: white;
text-shadow: black 0.1rem 0.1rem;
}
.text span a {
color: white;
}
.text .letterO {
cursor: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' style='font-size: 24px'><text y='20'>✌🏻</text></svg>"),
auto;
}
.wrapper--grayscale {
background: linear-gradient(
124deg,
#fff,
#eee,
#ddd,
#ccc,
#bbb,
#aaa,
#555,
#333,
#111
);
}
.wrapper--rainbow {
background: linear-gradient(
124deg,
#ff2400,
#e81d1d,
#e8b71d,
#e3e81d,
#1de840,
#1ddde8,
#2b1de8,
#dd00f3
);
}
.wrapper {
animation: effect 25s ease-in-out infinite;
background-size: 1800% 1800%;
bottom: 0;
height: 100%;
left: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
}
@keyframes effect {
0% {
background-position: 0% 80%;
}
50% {
background-position: 100% 20%;
}
100% {
background-position: 0% 80%;
}
}