-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (143 loc) · 4.56 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!--BOOTSTRAP-->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<title>Collezione Digitale di Poesie</title>
<style>
html, body {
margin: 0;
padding: 0;
}
main {
display: flex;
}
nav {
color: white;
background-color: black;
flex: 1;
padding: 5em;
height: 100vh;
overflow: auto;
}
nav ul li {
border-bottom: 1px solid grey;
line-height: 1.7;
}
nav ul li a {
text-decoration: none;
color: white;
display: inline-block;
width: 100%;
padding: 4px 8px;
}
nav ul li a:hover {
text-decoration: none;
background-color: grey;
color: white;
}
#homeSubMenu {
text-indent: 1em;
}
.home-cover {
float: left;
flex: 2;
background-image: url("home-cover.jpg");
background-repeat: no-repeat;
background-size: cover;
}
@media screen and (max-width: 600px) {
.home-cover {
float: left;
height: 100vh;
flex: 1;
background-image: url("dorso-libro.PNG");
background-repeat: no-repeat;
background-size: cover;
}
nav {
color: white;
background-color: black;
flex: 2;
padding: 5em;
}
}
</style>
</head>
<body>
<main>
<div class="home-cover">
<!-- <img class="img-fluid" src="home-cover.jpg" alt="Cover home"> -->
</div>
<nav id="sidebar">
<div class="sidebar-header">
<h3>Collezione Digitale di Poesie</h3>
</div>
<ul class="list-unstyled components">
<p>Università di Bologna</p>
<li class="active">
<a href="#homeSubMenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">Autori</a>
<ul class="collapse list-unstyled" id="homeSubMenu">
<li>
<a href="autori/dante.html">Dante</a>
</li>
<li>
<a href="autori/petrarca.html">Petrarca</a>
</li>
<li>
<a href="autori/ariosto.html">Ariosto</a>
</li>
<li>
<a href="autori/tasso.html">Tasso</a>
</li>
<li>
<a href="autori/foscolo.html">Foscolo</a>
</li>
<li>
<a href="autori/manzoni.html">Manzoni</a>
</li>
<li>
<a href="autori/leopardi.html">Leopardi</a>
</li>
<li>
<a href="autori/pascoli.html">Pascoli</a>
</li>
</ul>
</li>
<li>
<a href="servizi/geobrowser.html">Mappa e Linea del tempo</a>
</li>
<li>
<a href="servizi/voyant.html">Voyant Tools</a>
</li>
<li>
<a href="documentazione/documentazione.html">Documentazione</a>
</li>
</ul>
</nav>
</main>
</body>
</html>