-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (92 loc) · 2.29 KB
/
index.html
File metadata and controls
105 lines (92 loc) · 2.29 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
<!DOCTYPE html>
<html lang="el">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Μεταφρασμένα Βιβλία</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Noto Serif', 'Georgia', serif;
background: #faf8f5;
color: #2c2c2c;
line-height: 1.85;
font-size: 18px;
}
.container {
max-width: 720px;
margin: 0 auto;
padding: 60px 30px;
}
h1 {
font-size: 2.2em;
font-weight: 700;
color: #1a1a1a;
letter-spacing: 2px;
text-align: center;
margin-bottom: 50px;
text-transform: uppercase;
}
.book-list {
list-style: none;
}
.book-list li {
border-bottom: 1px solid #e0d8cc;
padding: 25px 0;
}
.book-list li:first-child {
border-top: 2px solid #c9a96e;
}
.book-list a {
text-decoration: none;
color: inherit;
display: block;
}
.book-list a:hover .book-title {
color: #c9a96e;
}
.book-title {
font-size: 1.4em;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 6px;
}
.book-subtitle {
font-size: 1em;
color: #666;
font-style: italic;
margin-bottom: 8px;
}
.book-author {
font-size: 0.9em;
color: #888;
}
@media (max-width: 600px) {
.container { padding: 40px 20px; }
h1 { font-size: 1.6em; }
}
</style>
</head>
<body>
<div class="container">
<h1>Μεταφρασμένα Βιβλία</h1>
<ul class="book-list">
<li>
<a href="ai.html">
<div class="book-title">Ο Μεγάλος Θερισμός</div>
<div class="book-subtitle">Τεχνητή Νοημοσύνη, Εργασία και η Σανίδα Σωτηρίας του Bitcoin</div>
<div class="book-author">Adam Livingston</div>
</a>
</li>
<li>
<a href="creature.html">
<div class="book-title">Το Πλάσμα από το Νησί Jekyll</div>
<div class="book-subtitle">Η Απόλυτη Ιστορία της Ομοσπονδιακής Τράπεζας — Κεφάλαια 1-6</div>
<div class="book-author">G. Edward Griffin</div>
</a>
</li>
</ul>
</div>
</body>
</html>