forked from notionblog/NotionThemes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
103 lines (100 loc) · 2.25 KB
/
options.html
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
<html>
<head>
<title>Choose a Notion theme</title>
<style>
body {
padding: 5% 10%;
background-color: #ffffff;
}
h1 {
font-size: 25pt;
margin-bottom: 3%;
}
h2 {
font-size: 15pt;
}
.container {
max-width: 1300px;
margin: auto;
align-items: center;
}
.theme {
overflow: hidden;
width: 250px;
display: inline-block;
margin-right: 25px;
margin-bottom: 20px;
background-color: #ffffff;
color: #323232;
border: 2px solid #e9e9e9;
border-radius: 15px;
padding-bottom: 10px;
cursor: pointer;
font-size: 11px;
}
.theme img {
width: 100%;
display: block;
margin: auto;
}
.theme .description {
text-align: center;
margin-top: 10px;
}
.theme .tag {
padding: 2px 4px;
font-size: 12px;
color: #1a1d26;
background-color: darksalmon;
border-radius: 5px;
margin: 10px 0px 0 3px;
display: inline-block;
}
.theme .name {
font-size: 20px;
display: block;
}
.selected {
border: 5px solid #41bfe5;
}
.copyright {
margin: auto;
text-align: center;
position: fixed;
bottom: 30px;
font-size: 13pt;
left: 0;
right: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Choose a theme</h1>
<p style="font-size: 15px">
Follow me on Twitter <a href="https://twitter.com/_yudax">@_yudax</a> to
get updated when new themes are added.
</p>
<br />
<div>
<h2>Light</h2>
<ul id="lightThemes"></ul>
</div>
<div>
<h2>Dark</h2>
<ul id="darkThemes"></ul>
</div>
</div>
<div class="copyright">
<a href="https://ko-fi.com/M4M37F1UV" target="_blank"
><img
height="50"
style="border: 0px; height: 50px"
src="https://cdn.ko-fi.com/cdn/kofi1.png?v=3"
border="0"
alt="Buy Me a Coffee at ko-fi.com"
/></a>
</div>
<script src="js/options.js"></script>
</body>
</html>