-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathciprian-muresan.html
More file actions
131 lines (126 loc) · 3.61 KB
/
ciprian-muresan.html
File metadata and controls
131 lines (126 loc) · 3.61 KB
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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyprian Muresan</title>
<style>
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #fff;
color: #000;
position: relative;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
border-bottom: 1px solid #ddd;
position: relative;
}
.back-link {
font-size: 1.5rem;
font-weight: bold;
text-decoration: none;
color: #333;
}
.menu-icon {
display: flex;
flex-direction: column;
justify-content: space-around;
width: 25px;
height: 15px;
cursor: pointer;
}
.menu-icon div {
background-color: #000;
height: 2px;
width: 100%;
border-radius: 1px;
}
.menu {
display: none; /* Nasconde il menu di default */
position: absolute;
top: 60px;
right: 20px;
padding: 0;
}
.menu a {
display: block;
padding: 10px 0;
text-decoration: none;
color: #000; /* Scritte nere */
font-size: 1rem;
}
.menu a:hover {
background-color: transparent; /* Nessun colore di sfondo al hover */
text-decoration: underline; /* Sottolinea al passaggio del mouse */
}
img {
width: 100%;
max-height: 90vh;
object-fit: contain;
display: block;
margin: 20px auto;
}
.description {
font-family: 'Courier New', Courier, monospace;
font-size: 1rem;
text-align: left;
margin: 20px;
color: #333;
}
.prev-artist, .next-artist {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 2rem;
color: gray;
text-decoration: none;
z-index: 1000;
}
.prev-artist {
left: 20px;
}
.next-artist {
right: 20px;
}
.prev-artist:hover, .next-artist:hover {
color: black;
}
</style>
</head>
<body>
<div class="header">
<a href="pagina.html" class="back-link">Cyprian Muresan</a>
<div class="menu-icon" onclick="toggleMenu()">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- Menu nascosto -->
<div class="menu" id="menu">
<a href="pagina.html">Artisti</a>
<a href="3500cm2.html">3500cm2</a>
<a href="luoghi.html">Luoghi</a>
<a href="contatti.html">Contatti</a>
</div>
<img src="cyprian-muresan.jpg" alt="Cyprian Muresan">
<div class="description">
Progetto presentato presso l'Accademia di Romania, Roma, nel 2016.
</div>
<!-- Frecce per navigare tra le pagine -->
<a href="matt-mullican.html" class="prev-artist">←</a>
<a href="marc-nagtzaam.html" class="next-artist">→</a>
<script>
function toggleMenu() {
const menu = document.getElementById('menu');
menu.style.display = menu.style.display === 'block' ? 'none' : 'block';
}
</script>
</body>
</html>