-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenergeia.html
More file actions
147 lines (132 loc) · 4.57 KB
/
Copy pathenergeia.html
File metadata and controls
147 lines (132 loc) · 4.57 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="el">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>Αξιωματική θεμελίωση έργου και κινητικής ενέργειας</title>
<style>
body {
font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
background-color: #f5f0e6;
color: #4a3c2a;
margin: 0;
padding: 10px;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,50 Q50,20 80,50 Q50,80 20,50" fill="none" stroke="%23d4c9a8" stroke-width="0.5"/></svg>');
}
.container {
max-width: 100%;
margin: 0 auto;
position: relative;
padding: 5px;
}
h1 {
text-align: center;
color: #6d4c3d;
margin: 15px 0;
font-size: 1.5em;
font-weight: normal;
}
.pdf-container {
position: relative;
padding: 30px 15px;
background-color: #fff9ee;
border: 1px solid #d4c9a8;
margin-bottom: 20px;
overflow: hidden;
}
.ornament {
position: absolute;
width: 30px;
height: 30px;
opacity: 0.7;
}
.ornament.top-left {
top: 5px;
left: 5px;
transform: rotate(0deg);
}
.ornament.top-right {
top: 5px;
right: 5px;
transform: rotate(90deg);
}
.ornament.bottom-left {
bottom: 5px;
left: 5px;
transform: rotate(270deg);
}
.ornament.bottom-right {
bottom: 5px;
right: 5px;
transform: rotate(180deg);
}
iframe {
width: 100%;
height: 500px;
border: none;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.btn-home {
display: block;
width: 90%;
max-width: 200px;
margin: 15px auto;
padding: 10px;
background-color: #6d4c3d;
color: #f5f0e6;
text-align: center;
text-decoration: none;
border-radius: 4px;
}
.signature {
text-align: right;
font-style: italic;
color: #6d4c3d;
margin-top: 10px;
}
/* Mobile-specific adjustments */
@media (max-width: 400px) {
.ornament {
width: 20px;
height: 20px;
}
iframe {
height: 350px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Αξιωματική θεμελίωση έργου και κινητικής ενέργειας</h1>
<div class="pdf-container">
<!-- Ornaments -->
<div class="ornament top-left">
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<path d="M20,50 Q30,30 50,20 Q70,30 80,50 Q70,70 50,80 Q30,70 20,50" fill="none" stroke="#6d4c3d" stroke-width="1.5"/>
</svg>
</div>
<div class="ornament top-right">
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<path d="M20,50 Q30,30 50,20 Q70,30 80,50 Q70,70 50,80 Q30,70 20,50" fill="none" stroke="#6d4c3d" stroke-width="1.5"/>
</svg>
</div>
<div class="ornament bottom-left">
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<path d="M20,50 Q30,30 50,20 Q70,30 80,50 Q70,70 50,80 Q30,70 20,50" fill="none" stroke="#6d4c3d" stroke-width="1.5"/>
</svg>
</div>
<div class="ornament bottom-right">
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<path d="M20,50 Q30,30 50,20 Q70,30 80,50 Q70,70 50,80 Q30,70 20,50" fill="none" stroke="#6d4c3d" stroke-width="1.5"/>
</svg>
</div>
<!-- PDF Viewer -->
<iframe src="Energia.pdf" title="PDF Viewer"></iframe>
</div>
<a href="index.html" class="btn-home">Επιστροφή στην αρχική</a>
<div class="signature">Κώστας Κούδας</div>
</div>
</body>
</html>