-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
171 lines (138 loc) · 4.81 KB
/
index.html
File metadata and controls
171 lines (138 loc) · 4.81 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<title>Промышленность блокадного Ленинград</title>
<!-- Another way for accessing the necessary font:-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Material fonts -->
<!--<link rel="stylesheet" href="packages/mdl/assets/fonts/fonts.min.css">-->
<!-- Your brown-orange-theme! -->
<link id="theme" rel="stylesheet" href="https://cdn.rawgit.com/MikeMitterer/dart-mdl-theme/v1.18.2/brown-orange/material.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto:500');
body
{
font-family: 'Roboto', sans-serif !important;
width: 100%;
height: 100%;
}
.mdl-navigation__link
{
cursor: pointer;
}
.page-content-block
{
width: 700px;
margin: 0 auto;
text-align: center;
}
.page-content
{
text-align: left;
}
img{
max-width: 100%;
max-height: 100%;
min-width: 100%;
}
video
{
max-width: 100%;
max-height: 100%;
min-width: 100%;
}
iframe
{
width: 640px;
height: 360px;
}
.img-elongated-center-block
{
margin: 0 auto;
text-align: center;
}
.img-elongated
{
max-width: 50%;
max-height: 100%;
min-width: 0;
}
@media all and (min-width: 2200px)
{
.page-content-block
{
width: 2000px;
margin: 0 auto;
text-align: center;
font-size: large;
}
}
@media all and (min-width: 1900px)
{
.page-content-block
{
width: 1000px;
margin: 0 auto;
text-align: center;
font-size: large;
}
}
@media all and (max-width: 700px)
{
.page-content-block
{
margin-left: 16px;
margin-right: 16px;
width: auto;
}
}
@media all and (max-width: 450px)
{
.mdl-layout__header-row .mdl-layout-title
{
font-size: x-small;
}
iframe
{
width: auto;
height: auto;
}
}
</style>
</head>
<body>
<div class="main-layout">
<div class="mdl-layout mdl-layout--fixed-header mdl-layout--fixed-drawer">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Промышленность блокадного Ленинград</span>
</div>
<!--<div class="mdl-layout__tab-bar mdl-ripple-effect">-->
<!--<a href="#introduction" class="mdl-layout__tab is-active" id="tab___introduction">Сводка</a>-->
<!--<a href="#scroll-tab-2" class="mdl-layout__tab" id="tab___privilege">Привилегии</a>-->
<!--<a href="#scroll-tab-3" class="mdl-layout__tab" id="tab___problems">Проблемы</a>-->
<!--<a href="#scroll-tab-4" class="mdl-layout__tab" id="tab___interview">Воспоминания рабочих</a>-->
<!--<a href="#scroll-tab-5" class="mdl-layout__tab" id="tab___stories">Рассказы</a>-->
<!--<a href="#scroll-tab-6" class="mdl-layout__tab" id="tab___movie">Кадры из фильма</a>-->
<!--</div>-->
</header>
<div class="mdl-layout__drawer">
<nav class="mdl-navigation">
<a class="mdl-navigation__link" id="tab___introduction">Сводка</a>
<a class="mdl-navigation__link" id="tab___privilege">Привилегии</a>
<a class="mdl-navigation__link" id="tab___problems">Проблемы</a>
<a class="mdl-navigation__link" id="tab___interview">Воспоминания рабочих</a>
<a class="mdl-navigation__link" id="tab___stories">Рассказы</a>
<a class="mdl-navigation__link" id="tab___movie">Видеоматериал</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content-block">
<div class="page-content">
</div>
</div>
</main>
</div>
</div>
<script src="main.dart.js"></script>
</body></html>