forked from diogotcorreia/proj-ist-statistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (88 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Estatísticas Submissões Projetos IST</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css"
rel="stylesheet"
/>
<style>
html {
font-family: "Fira Mono", monospace;
background: #151515;
color: white;
--c1: #118ab2;
--c2: #2a9d8f;
--c3: #e9c46a;
--c4: #f4a261;
--c5: #e76f51;
--c6: #f3722c;
}
body {
max-width: 800px;
margin: auto;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 15px;
row-gap: 15px;
}
.button {
background: linear-gradient(
320deg,
#151515 0%,
var(--gradient-color) 100%
);
border-radius: 10px;
flex-grow: 1;
height: 150px;
padding: 50px;
font-size: 1.5rem;
display: block;
text-decoration: none;
color: inherit;
}
.button .subtitle {
font-size: 1.2rem;
}
</style>
</head>
<body>
<header>
<h1 style="color: var(--c1)">Estatísticas Submissões Projetos IST</h1>
</header>
<main>
<div class="grid">
<a href="asa-p1-24.25/" class="button" style="--gradient-color: var(--c6)">
<span class="mdi mdi-graph"></span> ASA Projeto 1<br />
<span class="subtitle">2024/2025 - Período 2</span>
</a>
<a href="lp-p1-23.24/" class="button" style="--gradient-color: var(--c1)">
<span class="mdi mdi-brain"></span> LP Projeto<br />
<span class="subtitle">2023/2024 - Período 2</span>
</a>
<a href="iaed-p1/" class="button" style="--gradient-color: var(--c2)">
<span class="mdi mdi-language-c"></span> IAED Projeto 1<br />
<span class="subtitle">2020/2021 - Semestre 2</span>
</a>
<a href="lp-p1/" class="button" style="--gradient-color: var(--c3)">
<span class="mdi mdi-brain"></span> LP Projeto<br />
<span class="subtitle">2020/2021 - Semestre 2</span>
</a>
<a href="iaed-p2/" class="button" style="--gradient-color: var(--c4)">
<span class="mdi mdi-language-c"></span> IAED Projeto 2<br />
<span class="subtitle">2020/2021 - Semestre 2</span>
</a>
</div>
</main>
</body>
</html>