-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspray.css
More file actions
54 lines (45 loc) · 738 Bytes
/
spray.css
File metadata and controls
54 lines (45 loc) · 738 Bytes
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
html {
font: max(3ch, 5vmax + 3vmin) sans-serif;
}
body {
display: flex;
flex-flow: anywhere;
align-items: center;
justify-content: center;
box-sizing: border-box;
overflow-wrap: anywhere;
margin: 0;
min-height: 100vh;
}
body > * {
box-sizing: border-box;
padding: 1ch;
}
h1 {
font-weight: unset;
justify-content: center;
animation: 1s ease taze infinite;
margin: auto;
}
p {
margin: auto;
}
a {
display: inline-flex;
padding: 1vmin;
}
@keyframes taze {
from {
text-shadow: -1vw 1vh 30vw aquamarine;
}
to {
text-shadow: 1vw 1vh 30vw mediumpurple;
}
}
:focus-within {
box-shadow: 0 0 0 50vw #ee1;
}
:focus {
box-shadow: 0 0 0 30vmax mediumpurple;
outline: thick outset;
}