-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaurora.css
More file actions
73 lines (61 loc) · 922 Bytes
/
Copy pathaurora.css
File metadata and controls
73 lines (61 loc) · 922 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
:any-link {
transition: 180ms;
color: inherit;
text-decoration-style: wavy;
}
:hover {
text-decoration-style: solid;
}
:focus {
text-decoration-style: double;
outline-style: dotted;
outline-width: 1ex;
outline-color: #ec0;
}
::selection {
background: indigo;
color: coral;
}
.bae {
background: #bae;
color: #111;
}
.sol {
background: blueviolet;
color: #111;
}
.jugo {
background: orange;
color: #111;
}
html {
transition: 360ms;
font-family: sans-serif;
font-size: max(20pt, 10vmin);
line-height: 2;
}
body {
display: flex;
flex-flow: column;
margin: 2rem auto;
}
figure {
display: flex;
flex-flow: column;
margin: auto;
justify-content: center;
min-height: 100vh;
}
figure > * {
border-color: transparent;
border-radius: 100%;
border-style: double;
border-width: 1ex;
padding: 0;
}
footer {
margin: 2rem;
}
footer > a {
display: table;
}