-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (116 loc) · 2.94 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>my startpage</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #000;
color: #fff;
display: flex;
justify-content: center;
min-height: 100vh;
}
.wrapper {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
padding: 20px;
}
.search-container {
text-align: left;
margin-top: 72px;
margin-bottom: 48px;
width: 80%;
max-width: 384px;
}
.search-container input {
width: 100%;
padding: 10px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 16px;
background-color: #333;
color: #fff;
}
.search-container input::placeholder {
text-align: left;
}
.container {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 20px;
width: 90%;
max-width: 800px;
text-align: center;
}
@media (max-width: 768px) {
.container {
grid-template-columns: repeat(2, 1fr);
}
}
.app {
text-decoration: none;
color: white;
}
.app img {
width: 80px;
height: 80px;
object-fit: contain;
border-radius: 12px;
transition: transform 0.3s ease;
}
.app:hover img {
transform: scale(1.1);
}
.app span {
display: block;
margin-top: 8px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="search-container">
<form action="https://www.startpage.com/sp/search" method="get">
<input
type="text"
name="query"
placeholder="Search with Startpage..."
required>
</form>
</div>
<div class="container">
<a href="#" class="app">
<img src="nextcloud.png" alt="nextcloud">
<span>office</span>
</a>
<a href="#" class="app">
<img src="memos.png" alt="memos">
<span>notes</span>
</a>
<a href="#" class="app">
<img src="freshrss.png" alt="freshrss">
<span>rss</span>
</a>
<a href="#" class="app">
<img src="wallabag.png" alt="wallabag">
<span>readlater</span>
</a>
<a href="#" class="app">
<img src="mealie.png" alt="mealie">
<span>cooking</span>
</a>
<a href="#" class="app">
<img src="plausible.png" alt="App 6">
<span>analytics</span>
</a>
</div>
</div>
</body>
</html>