-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
64 lines (62 loc) · 1.47 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sraffa Restyle</title>
<style>
html {
font-size: 62.5%;
}
body {
background-color: rgb(37, 37, 37);
min-width: 40rem;
min-height: 10rem;
font-size: 1.6rem;
color: white;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 2rem;
text-align: center;
}
h1 {
margin: 1rem 0;
}
h3 {
max-width: 30rem;
}
a {
margin: 2rem 0;
color: #ffffff;
padding: 2rem 4rem;
width: 20rem;
text-align: center;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
background-color: rgb(10, 47, 213);
}
a:hover {
background-color: rgb(66, 94, 185);
}
p {
font-size: 1.3rem;
color: rgb(144, 144, 144);
}
</style>
</head>
<body id="sraffa-restyle">
<h1>Sraffa Restyle</h1>
<h3>Trasforma il sito del Curie-Sraffa con un nuovo stile moderno</h3>
<a
target="_blank"
rel="noreferrer noopener"
href="https://www.iiscuriesraffa.it"
>Vai al sito</a
>
<p>Ideata da Luis Dodaj e sviluppata da Lorenzo Corallo (2Ds)</p>
<script src="./app.js"></script>
</body>
</html>