-
Notifications
You must be signed in to change notification settings - Fork 1
/
custom.css
42 lines (36 loc) · 1.76 KB
/
custom.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
.bg-red {
box-shadow: 0 0 200px 100px hsla(9, 100%, 95%, 1);
background-color: hsla(9, 100%, 95%, 1);
}
/*Links: replicate underline that clears descenders */
@supports not (text-decoration-skip: ink) {
.bg-red a:link { text-decoration: none;
background: -webkit-linear-gradient(hsla(9, 100%, 95%, 1), hsla(9, 100%, 95%, 1)), -webkit-linear-gradient(hsla(9, 100%, 95%, 1), hsla(9, 100%, 95%, 1)), -webkit-linear-gradient(#333, #333);
background: linear-gradient(hsla(9, 100%, 95%, 1), hsla(9, 100%, 95%, 1)), linear-gradient(hsla(9, 100%, 95%, 1), hsla(9, 100%, 95%, 1)), linear-gradient(#333, #333);
-webkit-background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
-moz-background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
background-repeat: no-repeat, no-repeat, repeat-x;
text-shadow: 0.03em 0 hsla(9, 100%, 95%, 1), -0.03em 0 hsla(9, 100%, 95%, 1), 0 0.03em hsla(9, 100%, 95%, 1), 0 -0.03em hsla(9, 100%, 95%, 1), 0.06em 0 hsla(9, 100%, 95%, 1), -0.06em 0 hsla(9, 100%, 95%, 1), 0.09em 0 hsla(9, 100%, 95%, 1), -0.09em 0 hsla(9, 100%, 95%, 1), 0.12em 0 hsla(9, 100%, 95%, 1), -0.12em 0 hsla(9, 100%, 95%, 1), 0.15em 0 hsla(9, 100%, 95%, 1), -0.15em 0 hsla(9, 100%, 95%, 1);
background-position: 0% 93%, 100% 93%, 0% 93%; }
}
.rounded-corners {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
body {
background-color: hsla(60, 100%, 97%, 1);
}
#shortcut {
position: fixed;
top: 0.0em;
left: calc( -112.391px + 1.5em );
transform: rotate( -90deg );
transform-origin: bottom right;
/* background-color: hsla(60, 100%, 97%, 1); /*/
}
dl {
padding-left: 0;
}