-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (58 loc) · 1.06 KB
/
style.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
[theme="dark"] {
--headings-color: cyan;
--text-color: white;
--background-color: linear-gradient(-135deg, gray, black, black);
}
[theme="light"] {
--headings-color: black;
--text-color: black;
--background-color: linear-gradient(-135deg, white, gray, gray);
}
button {
display: block;
margin: auto;
color: gray;
border-radius: 5px;
box-shadow: inset 0 0 0 white;
}
img {
display: block;
width: 100%;
border: inset 1px white;
border-radius: 15px;
padding-left: 1px;
}
a, h1, h3 {
color: var(--headings-color);
font-family: Helvetica;
}
h1, h3 {
text-align: center;
}
a {
text-decoration-line: none;
font-weight: bold;
}
body {
color: var(--text-color);
background: var(--background-color);
}
p {
font-family: Papyrus;
padding: 10px 3px 10px 6px;
border: inset 2px var(--text-color);
border-radius: 4px;
}
.minitext {
padding: 10px;
text-align: center;
font-size: 10px;
}
button:active {
background-color: lightskyblue;
border: inset deepskyblue;
}
button:active:after {
background-color: auto;
border: white;
}