-
Notifications
You must be signed in to change notification settings - Fork 0
/
pusto.html
132 lines (114 loc) · 2.56 KB
/
pusto.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom Layout Page</title>
<style>
@font-face {
font-family: 'Sclavorum';
src: url('sclavorum.otf') format('opentype');
}
body, html {
margin: 0;
padding: 0;
font-family: 'Sclavorum', sans-serif;
color: #000000;
background: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
}
.logo-bar a {
display: block;
margin-top: 20px;
}
.logo-bar img {
height: 80px;
width: 80px;
}
.divider-bar {
background-color: #262626;
height: 1px;
width: 900px;
margin-top: 20px;
}
.navigation {
width: 900px;
display: flex;
justify-content: center;
padding: 10px 0;
font-size: 20px;
}
.navigation a {
margin: 0 10px;
text-decoration: none;
color: #000000;
}
.main-content {
width: 900px;
display: flex;
margin-top: 20px;
gap: 20px;
}
.left-content {
flex: 2;
padding: 10px;
text-align: left;
font-size: 21px;
}
.header {
margin-bottom: 20px;
color: #000000;
padding: 10px;
font-size: 25px;
text-align: justify;
}
.text-section {
margin-bottom: 20px;
color: #000000;
padding: 10px;
font-size: 18px;
text-align: justify;
}
.image-container {
margin-bottom: 20px;
}
.right-content img {
max-width: 100%;
height: auto;
margin-bottom: 20px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.image-description {
padding: 10px;
font-size: 18px;
font-style: italic;
}
</style>
</head>
<body>
<div class="logo-bar">
<a href="glovnoe.html">
<img src="img/logo.png" alt="Logo">
</a>
</div>
<div class="divider-bar"></div>
<div class="navigation">
<a href="glovnoe.html">ГЛОВНОЕ</a>
<a href="slovnik.html">СЛОВНИКЪ</a>
<a href="deiny.html">ДѢИНЫ</a>
<a href="modlitvy.html">МОДЛИТВЫ</a>
</div>
<div class="main-content">
<div class="left-content">
<div class="header">
<strong style="color: #E21C21;">⁘</strong>НѢЧТО<strong style="color: #E21C21;">⁘</strong>
</div>
<div class="text-section">
НѢЧТО <strong style="color: #E21C21;">⁘</strong>НѢЧТО<strong style="color: #E21C21;">⁘</strong> <em>НѢЧТО</em><br>НѢЧТО
</div>
</div>
</div>
</body>
</html>