-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrube.css
More file actions
97 lines (82 loc) · 1.36 KB
/
frube.css
File metadata and controls
97 lines (82 loc) · 1.36 KB
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
html {
font-family: sans-serif;
font-size: max(22px, 3vmax + 2vmin);
line-height: 1.618;
}
body {
display: flex;
flex-flow: column;
margin: auto;
margin: 0 1em 2em;
min-height: 100vh;
overflow-wrap: anywhere;
}
.stage {
align-items: center;
display: flex;
flex-flow: column;
justify-content: center;
margin: auto;
min-height: 100vh;
}
figure {
contain: content;
margin: auto;
}
img {
max-width: 100%;
height: auto;
}
h1 {
font-size: 2em;
line-height: 2;
}
a {
font-weight: bold;
padding: 10pt;
}
@media (orientation: portrait) {
.grace {
margin-inline: 2em;
writing-mode: vertical-rl;
}
}
:focus {
outline: thick outset;
text-decoration-style: dotted;
}
:hover {
text-decoration-style: double;
}
::selection {
background: purple;
color: pink;
}
:root {
background: thistle;
background-image: linear-gradient(gold, gold, mediumspringgreen, deepskyblue);
color: purple;
}
:any-link {
color: darkviolet;
background-color: linen;
}
:focus {
outline-color: hotpink;
background-color: darkviolet;
}
a:hover {
color: purple;
background-color: magenta;
}
h1 {
text-shadow:
-1vw -1vh 0pc deeppink,
-2vw -2vh 0pc salmon,
-3vw -3vh 0pc orange,
-4vw -4vh 0pc gold,
-5vw -5vh 0pc mediumorchid,
-6vw -6vh 0pc mediumpurple,
-7vw -7vh 0pc mediumaquamarine;
word-spacing: 1ch;
}