generated from webmural/jel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswan.css
104 lines (84 loc) · 1.4 KB
/
swan.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
:root {
background-color: skyblue;
background-image: radial-gradient(lightpink, hotpink, skyblue);
color: darkblue;
}
.spun {
background: blueviolet;
color: gainsboro;
}
::selection {
background: #313;
color: #ee1;
}
:any-link {
color: #0e0e0e;
background-color: skyblue;
background-image: conic-gradient(powderblue, skyblue, gainsboro, turquoise);
}
:nth-child(1n) { filter: hue-rotate(0deg) }
:nth-child(2n) { filter: hue-rotate(90deg) }
:nth-child(3n) { filter: hue-rotate(180deg) }
:nth-child(4n) { filter: hue-rotate(-90deg) }
:focus {
outline: thick outset;
box-shadow: 0 0 1ch 1ch springgreen;
}
:hover {
text-decoration-style: double;
}
html {
font-family: sans-serif;
font-size: max(2em, 4vmax + 4vmin);
}
body {
margin: 2em auto;
overflow-wrap: anywhere;
}
svg {
max-width: 100%;
height: auto;
}
header {
order: 111;
text-align: end;
margin-bottom: 2em;
}
main {
display: flex;
flex-flow: column;
align-items: flex-start;
}
menu {
box-sizing: border-box;
display: table;
margin: auto;
}
li {
display: flex;
box-sizing: border-box;
margin: auto;
}
li a {
transform: rotate(9deg);
}
h1 {
font-family: sans-serif;
font-weight: unset;
font-size: 1.618em;
margin: 0;
}
footer {
font-size: 2em;
}
span {
display: flex;
flex-flow: column;
}
code {
font: unset;
}
:nth-child(4n) {
text-indent: 2em;
margin-bottom: 2em;
}