-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
160 lines (150 loc) · 3.53 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
:root {
color-scheme: light dark;
--background-color: white;
--text-color: black; }
body {
font-family: system-ui, -apple-system, Arial, sans-serif;
margin: 0px;
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-top: 20px;
padding-bottom: 20px;
margin-bottom: 40px;
text-align: center;
background-color: #5693DB;
color: white; }
header.cropped-bottom {
padding-bottom: 0;
overflow: hidden; }
header.cropped-bottom .showcase {
margin-bottom: -6px; }
header .title {
padding-bottom: 20px; }
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: 7px;
font-size: 3em; }
header .showcase {
width: 90%;
max-width: 780px; }
section.main {
max-width: 860px;
margin: 0 auto 0 auto; }
section.main .tagline {
font-size: 1.4em;
font-style: italic;
line-height: 1.5em;
text-align: center;
margin: 0 20px 40px 20px; }
section.main blockquote {
text-align: left;
margin-left: 0; }
section.main .feature {
position: relative;
display: inline-block;
width: 380px;
vertical-align: top;
text-align: left;
margin: 0 20px 20px 20px; }
section.main .feature h3, section.main .feature p {
padding: 0 20px 0 40px;
margin: 0 0 6px 0;
line-height: 1.45em; }
section.main .feature .bulleticon {
position: absolute;
top: -6px;
left: 0;
width: 30px;
height: 30px;
font-size: 30px;
font-weight: lighter; }
section.main .download {
margin-top: 40px;
text-align: center; }
section.main .download img {
width: 225px;
height: 66px; }
.screenshots {
text-align: center;
margin: 40px 20px 0 20px; }
.screenshots img {
padding: 20px; }
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 all and (max-width: 860px) {
section.main {
max-width: inherit; }
section.main .feature {
width: inherit;
display: block; } }
@media (prefers-color-scheme: dark) {
:root {
--background-color: black;
--text-color: white; }
section.main .feature img {
-webkit-filter: invert(1);
filter: invert(1); }
footer img {
-webkit-filter: invert(1);
filter: invert(1); }
footer a:HOVER {
color: #bbb; } }
/*# sourceMappingURL=style.css.map */