-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly.css
More file actions
50 lines (42 loc) · 766 Bytes
/
fly.css
File metadata and controls
50 lines (42 loc) · 766 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
:any-link { transition: 200ms }
:hover { text-decoration-style:wavy }
:focus { outline: thick double }
html {
font-family: sans-serif;
font-size: max(3ex, 3vmax)
}
body {
display: flex;
flex-flow: column;
margin: 0;
overflow-wrap: anywhere;
}
h1 {
font-family: fantasy;
text-shadow: 0 -2pt 2pt chartreuse;
order: -1;
}
.pad { padding: 1ex }
.eye { border-radius: 100% }
.unity {
box-sizing: border-box;
display: flex;
flex-flow: wrap;
margin: 0;
padding: 0;
align-items: flex-end;
justify-content: flex-end;
}
.unified {
align-self: flex-end;
list-style: none;
padding: 1em;
flex-basis: 62%;
text-align: end;
}
.unified:first-child {
border-radius: 100% 0 0;
}
.unified:last-child {
border-radius: 0 0 0 100%;
}