Skip to content

Commit b8d69f8

Browse files
committed
Publish 2024-09-20
1 parent 27e5f0e commit b8d69f8

File tree

4 files changed

+148
-0
lines changed

4 files changed

+148
-0
lines changed

images/plus-palette.png

70.4 KB
Loading

plus/index.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Timeline — Dark Reader</title>
7+
<meta name="theme-color" content="#141e24">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<link rel="shortcut icon" href="/images/icon-256.png">
10+
<meta property="og:type" content="website">
11+
<meta property="og:site_name" content="Dark Reader">
12+
<meta property="og:url" content="https://darkreader.org/plus">
13+
<meta property="og:title" content="Dark Reader Plus">
14+
<meta property="og:image" content="https://darkreader.org/plus-palette.png">
15+
<meta property="og:description" content="Unlock limitless customization possibilities with Dark Reader.">
16+
<meta name="description" content="Unlock limitless customization possibilities with Dark Reader.">
17+
<link rel="stylesheet" href="style.css">
18+
<script src="script.js" type="module"></script>
19+
</head>
20+
21+
<body>
22+
<a class="banner" href="../">
23+
<img class="banner__image" src="/images/darkreader-birthday.svg" />
24+
</a>
25+
26+
<h2>
27+
<span class="title-darkreader">Dark Reader</span> <span class="title-plus">Plus</span>
28+
</h2>
29+
30+
<p>
31+
<img class="screenshot" src="/images/plus-palette.png" alt="Dark Reader color palette">
32+
</p>
33+
34+
<h3 class="slogan">
35+
<span class="slogan-1">Color</span> <span class="slogan-2">Your</span> <span class="slogan-3">World</span>
36+
</h3>
37+
38+
<p>
39+
Unlock limitless customization possibilities
40+
</p>
41+
42+
<script type="module" src="../elements/stats.js"></script>
43+
44+
</body>
45+
46+
</html>

plus/script.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
void 0;

plus/style.css

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
:root {
2+
--color-background: #1b191d;
3+
--color-control: #316e7d;
4+
--color-control-hover: #193945;
5+
--color-text: #ac96bb;
6+
--color-text-highlight: white;
7+
--color-accent: #e96c4c;
8+
}
9+
10+
html {
11+
background-color: var(--color-background);
12+
}
13+
14+
body {
15+
color: var(--color-text);
16+
font-family: system-ui;
17+
max-width: 42em;
18+
margin: 0 auto;
19+
padding: 1em
20+
}
21+
22+
h1,
23+
h2 {
24+
color: var(--color-accent);
25+
}
26+
27+
h3 {
28+
margin-bottom: 0;
29+
}
30+
31+
a {
32+
color: #53a1b3;
33+
}
34+
35+
a:hover {
36+
color: var(--color-text-highlight);
37+
}
38+
39+
::selection {
40+
background-color: var(--color-accent);
41+
color: var(--color-text-highlight);
42+
}
43+
44+
.banner__image {
45+
display: none;
46+
max-width: 32rem;
47+
}
48+
49+
footer {
50+
font-size: 0.75rem;
51+
margin-top: 1rem;
52+
}
53+
54+
.screenshot {
55+
border-radius: 1.5rem;
56+
box-shadow: 0 0 1rem black;
57+
max-width: 100%;
58+
width: 24rem;
59+
}
60+
61+
h2 {
62+
font-size: 2.25rem;
63+
text-align: center;
64+
}
65+
66+
.title-darkreader {
67+
font-weight: 900;
68+
text-transform: uppercase;
69+
}
70+
71+
.title-plus {
72+
color: white;
73+
font-weight: 100;
74+
text-shadow: 0 0 1rem var(--color-text), 0 0 0.5rem var(--color-text);
75+
text-transform: uppercase;
76+
}
77+
78+
p {
79+
color: white;
80+
text-align: center;
81+
text-shadow: 0 0 1rem var(--color-text), 0 0 0.5rem var(--color-text);
82+
}
83+
84+
.slogan {
85+
color: white;
86+
font-size: 2.5rem;
87+
font-weight: 100;
88+
text-align: center;
89+
}
90+
91+
.slogan-1 {
92+
text-shadow: 0 0 1rem hsl(283, 100%, 50%), 0 0 0.5rem hsl(283, 100%, 50%);
93+
}
94+
95+
.slogan-2 {
96+
text-shadow: 0 0 1rem hsl(188, 100%, 50%), 0 0 0.5rem hsl(188, 100%, 50%);
97+
}
98+
99+
.slogan-3 {
100+
text-shadow: 0 0 1rem hsl(204, 100%, 50%), 0 0 0.5rem hsl(204, 100%, 50%);
101+
}

0 commit comments

Comments
 (0)