generated from exitlevel/aura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sol.css
75 lines (65 loc) · 1.1 KB
/
sol.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
:any-link {
color: inherit;
text-decoration-style: dotted;
text-decoration-thickness: .2ex;
}
:focus {
text-decoration-style: solid;
outline-style: dotted;
outline-width: 1rem;
outline-color: maroon;
}
.esfera {
border-radius: 100%;
box-sizing: border-box;
padding: 1rem;
box-shadow:
0 0 1ex 1ex coral,
0 0 1ex 2ex violet;
}
.esfera:focus-within {
border-color: orange;
border-style: dotted;
border-width: 1rem;
}
.sol {
background: gold;
color: #111;
}
.jugo {
background: hotpink;
color: #111;
}
html {
font-family: sans-serif;
font-size: max(20pt, 10vmin);
line-height: 1.5;
}
body {
display: flex;
flex-flow: column;
margin: auto;
}
figure {
display: flex;
flex-flow: column;
margin: auto;
justify-content: center;
align-items: center;
min-height: 100vh;
}
figure > * {
border-color: transparent;
border-radius: 100%;
border-style: double;
border-width: 1rem;
box-sizing: border-box;
padding: 1rem;
}
footer {
display: flex;
flex-flow: column;
justify-content: space-around;
align-items: center;
margin-block: 1rem 2rem;
}