-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (121 loc) · 2.74 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
:root {
color-scheme: light dark;
--background-color: white;
--text-color: black; }
body {
font-family: system-ui, -apple-system, Arial, sans-serif;
margin: 0;
background-color: var(--background-color);
color: var(--text-color);
text-align: center; }
nav.general {
height: 30px;
background-color: black; }
nav.general a {
display: inline-block;
padding: 0 10px 0 10px;
height: 30px;
color: white;
text-decoration: none; }
nav.general a img {
margin-right: 6px;
height: 22px;
position: relative;
top: 4px; }
nav.general a span {
position: relative;
top: -1px; }
nav.general a:HOVER {
background-color: #333; }
header {
display: block;
padding-bottom: 20px;
margin-bottom: 40px;
text-align: center;
background-color: #fc8200;
color: white; }
header .title {
padding: 40px 0; }
header .title .icon,
header .title h1 {
display: inline-block;
margin: 0px;
padding: 0px;
vertical-align: top;
font-weight: normal; }
header .title .icon {
border-radius: 18px;
height: 72px; }
header .title h1 {
padding-left: 10px;
position: relative;
top: 2px;
font-size: 4em; }
header .showcase {
width: 90%;
max-width: 720px;
margin-bottom: 20px; }
section.main {
max-width: 800px;
margin: 0 auto;
padding: 0 20px 20px 20px;
text-align: left;
line-height: 1.5em;
font-size: 1.6em; }
section.main .tagline {
font-weight: bold; }
section.main blockquote {
text-align: left;
margin-left: 0;
margin-bottom: 20px; }
section.main blockquote q {
font-style: italic; }
section.main .download {
text-align: center; }
section.main .download img {
width: 225px;
height: 66px; }
section.main a {
color: var(--text-color); }
.screenshots {
margin: 20px 0; }
.screenshots img {
width: 260px;
margin: 10px; }
footer {
display: inline-block;
margin: 40px auto 40px auto;
padding: 0 20px;
color: #888;
text-align: left;
font-size: 0.8em;
line-height: 1.8em; }
footer p a {
text-decoration: underline; }
footer a {
color: #888;
text-decoration: none; }
footer a img {
margin-right: 10px;
opacity: 0.35;
width: 50px;
text-decoration: none; }
footer a:HOVER {
color: #444; }
footer a:HOVER img {
opacity: 0.6; }
footer img,
footer p {
display: inline-block;
vertical-align: top;
margin: 0px; }
@media (prefers-color-scheme: dark) {
:root {
--background-color: black;
--text-color: white; }
footer img {
-webkit-filter: invert(1);
filter: invert(1); }
footer a:HOVER {
color: #bbb; } }
/*# sourceMappingURL=style.css.map */