-
Notifications
You must be signed in to change notification settings - Fork 0
/
ferramentas.html
60 lines (56 loc) · 1.84 KB
/
ferramentas.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Ferramentas</title>
<meta property="og:title" content="Ferramentas">
<link rel="icon" type="image/png" href="https://cdn.jsdelivr.net/gh/twitter/[email protected]/assets/72x72/1f527.png">
<style>
body {
font-family: Segoe UI;
background-color: #23272A;
color: #eee;
height: 100vh;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
padding-left: 2vh;
padding-right: 2vh;
}
h1, h4, a {
user-select: none;
line-height: 0.85;
text-decoration: none;
transition: opacity 0.3s ease-in-out;
}
a, a:visited {
color: #7289da;
font-size: 3.5vh
}
.click img {
display: inline-flex;
margin-right: 1vh;
width: 3.5vh;
height: 3.5vh;
}
a:hover {
opacity: 80%;
}
</style>
</head>
<body>
<div class="all-container" style="text-align: center;">
<h1>Ferramentas</h1>
<h4>Essas ferramentas só existem pra eu não ir em outros sites.</h4>
<div class="click">
<img src="https://cdn.jsdelivr.net/gh/twitter/[email protected]/assets/72x72/23ef.png">
<a href="./ferramentas/player">Um player externo do YouTube</a><br>
<img src="https://cdn.jsdelivr.net/gh/twitter/[email protected]/assets/72x72/2797.png">
<a href="./ferramentas/porcentagem">Calculadora de porcentagem</a><br>
<img src="https://cdn.jsdelivr.net/gh/twitter/[email protected]/assets/72x72/1f4f0.png">
<a href="./ferramentas/listas">Embaralhar e/ou Organizar listas</a>
</div>
</div>
</body>
</html>