-
Notifications
You must be signed in to change notification settings - Fork 0
/
bug.html
85 lines (73 loc) · 1.94 KB
/
bug.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
<!DOCTYPE html>
<html>
<head style="background-color:dimgray;" style="color:white;">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
font-family: "Lato", sans-serif;
}
.sidebar {
margin: 0;
padding: 0;
width: 200px;
background-color: black;
position: fixed;
height: 100%;
overflow: auto;
}
.sidebar a {
display: block;
color: white;
padding: 16px;
text-decoration: none;
}
.sidebar a.active {
background-color: darkred;
color: white;
}
.sidebar a:hover:not(.active) {
background-color: #555;
color: white;
}
div.content {
margin-left: 200px;
padding: 1px 16px;
height: 1000px;
}
@media screen and (max-width: 700px) {
.sidebar {
width: 100%;
height: auto;
position: relative;
}
.sidebar a {float: left;}
div.content {margin-left: 0;}
}
@media screen and (max-width: 400px) {
.sidebar a {
text-align: center;
float: none;
}
}
</style>
</head>
<body style="background-color:dimgray;" style="color:white;">
<div class="sidebar">
<a href="index.html">Cos'e' aleOS</a>
<a href="scarica.html">Scarica aleOS</a>
<a href="beta.html">Prova una beta</a>
<a href="futuro.html">Cosa voglio aggiungere in futuro?</a>
<a class="active" href="bug.html">Bug trovati fino ad ora</a>
<a href="guida.html">E dopo averlo scaricato?</a>
<a href="contatti.html">Se ho un problema?</a>
<a href="ringraziamenti.html">Ringraziamenti</a>
<a href="#">Download diretto all'ultima versione stabile</a>
</div>
<div class="content">
<h2 style="color:white; font-family:verdana;">Che bug sono stati trovati?</h2>
<p style="color:white; font-family:verdana;">Cerchi una versione stabile? Premi il tasto apposito nella sidebar</p>
<h2 style="color:white; font-family:verdana;">Nessuna versione trovata. Cerca nelle beta se trovi qualcosa...</h2>
</div>
</body>
</html>