-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
80 lines (75 loc) · 2.09 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Web Greeter themes</title>
<meta
name="viewport"
content="width=device-width, viewport-fit=cover, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="themes/vendor/material-icons/css/materialdesignicons.min.css"
class="style"
/>
</head>
<body>
<div id="background"></div>
<div id="screen">
<div id="wrapper">
<h2>Web-Greeter themes</h2>
<div id="wrapper-themes">
<a
id="gruvbox-theme"
class="theme-div"
href="themes/gruvbox/index.html"
target="_top"
>
<img
src="themes/gruvbox/assets/screenshots/theme-show-1.png"
alt="gruvbox theme"
/>
<span>Gruvbox theme</span>
</a>
<a
id="dracula-theme"
class="theme-div"
href="themes/dracula/index.html"
target="_top"
>
<img
src="themes/dracula/assets/screenshots/theme-show-1.png"
alt="dracula theme"
/>
<span>Dracula theme</span>
</a>
</div>
</div>
<div id="floating-buttons" class="floating right bottom">
<div class="tooltip">
<a
id="github"
class="social"
href="https://github.com/JezerM/web-greeter"
target="_blank"
>
<span class="mdi mdi-github mdi-48px"></span>
</a>
<span class="tooltiptext">Web-Greeter repo</span>
</div>
<div class="tooltip">
<a
id="docs"
class="social"
href="https://jezerm.github.io/web-greeter-page/docs/"
target="_blank"
>
<span class="mdi mdi-file-document mdi-48px"></span>
</a>
<span class="tooltiptext">See documentation</span>
</div>
</div>
</div>
</body>
</html>