-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
120 lines (105 loc) · 3.13 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
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<title>Repository</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins');
html {
background-color: #101419;
}
html, body {
height: 100%;
background-color: #101419;
font-family: 'Poppins', sans-serif;
}
.wrapper {
min-height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.services {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: stretch;
background-color: #101419;
border-radius: 12px;
}
.services-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
.service {
flex-basis: 30%;
margin: 10px;
padding: 20px;
background-color: #1f2328;
border-radius: 12px;
text-align: center;
}
.service:hover {
background-color: #94F7C5;
cursor: pointer;
}
.service:hover * {
color: #101419;
}
.service h2 {
margin: 10px 0;
}
.service p {
margin: 0;
}
.description {
margin-bottom: 10px;
}
.service a {
color: #dee1e6;
text-decoration: none;
}
h2 {
color: #dee1e6;
text-align: center;
margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
.services {
padding: 20px;
}
.service {
flex-basis: 100%;
}
}
</style>
</head>
<body>
<div class="wrapper">
<h2>Which repository?</h2>
<section class="services" id="services">
<div class="services-container">
<div class="services">
<div class="service">
<a href="https://azu0609.github.io/repo/altstore_repo.json">
<img src="https://azu0609.github.io/assets/projects/repo.logo.png" alt="alt" height="128" width="128">
<h2>Altstore</h2>
<p class="description">Repository for Altstore, with automated update</p>
</a>
</div>
<div class="service">
<a href="https://azu0609.github.io/repo/scarlet_repo.json">
<img src="https://azu0609.github.io/assets/projects/repo.logo.png" alt="alt" height="128" width="128">
<h2>Scarlet</h2>
<p class="description">Repository for Scarlet, with automated update</p>
</a>
</div>
</div>
</div>
</section>
</div>
</body>
</html>