-
Notifications
You must be signed in to change notification settings - Fork 3
/
layouts.html
99 lines (99 loc) · 3.15 KB
/
layouts.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Эволюция CSS раскладок</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="shower/themes/ribbon/styles/styles.css">
<link rel="stylesheet" href="css/nav.css">
<link rel="icon" sizes="16x16" href="favicon.png">
<link rel="icon" sizes="32x32" href="favicon.png">
<style>
.shower {
--slide-ratio: calc(16 / 9);
}
#cover h2 {
margin: 30px 0 0;
color: rgb(51,51,51);
text-align: center;
font-size: 70px;
}
#cover p {
margin: 10px 0 0;
text-align: center;
color: rgb(51,51,51);
font-style: italic;
font-size: 20px;
}
#cover p a {
color: rgb(51,51,51);
}
#cover > img {
top: 60%;
}
span {
padding-bottom: 3px;
}
.logo {
display: block;
margin: 15px auto;
}
.copy {
font-size: 12px;
position: absolute;
bottom: 15px;
right: 15px;
}
</style>
</head>
<body class="shower list">
<header class="caption">
<h1>Эволюция CSS раскладок</h1>
</header>
<section class="slide" id="cover">
<h2>Эволюция CSS раскладок</h2>
<p>Автор <a href="https://vallek.github.io/">Vallek</a></p>
<img class="cover" src="pictures/layouts/evol_cr.jpg" alt="">
</section>
<section class="slide">
<img class="cover" src="pictures/layouts/popular-90s-websites-004.jpg" alt="">
</section>
<section class="slide">
<img class="cover" src="pictures/layouts/popular-90s-websites-003.jpg" alt="">
</section>
<section class="slide">
<img class="cover" src="pictures/layouts/popular-90s-websites-007.gif" alt="">
</section>
<section class="slide">
<img class="cover" src="pictures/layouts/popular-90s-websites-006.jpg" alt="">
</section>
<section class="slide">
<img class="cover" src="pictures/layouts/3.jpg" alt="">
</section>
<section class="slide">
<img class="cover" src="pictures/layouts/evol.jpg" alt="">
<a class="copy" href="https://commons.wikimedia.org/wiki/File:Evolution-des-wissens.jpg">Оригинал и лиценцзия</a>
</section>
<section class="slide" style="background-color: rgb(253, 236, 160);">
<img class="cover" src="pictures/layouts/Gusto.jpg" alt="">
</section>
<section class="slide">
<a class="copy" href="https://developer.mozilla.org/en-US/docs/Web/CSS/shape-outside">Свойство shape-outside</a>
<img class="cover" src="pictures/layouts/circle-float.png" alt="">
</section>
<section class="slide">
<a class="copy" href="https://blog.logrocket.com/create-parallax-scrolling-css/">Как создать эффект паралакс скролла</a>
<img class="cover" src="pictures/layouts/parallax-scroll-download.gif" alt="">
</section>
<section class="slide">
<a class="copy" href="https://gsap.com/showcase/">Примеры современных анимаций</a>
<img class="cover" src="pictures/layouts/disruption-company.gif" alt="">
</section>
<footer class="badge">
<a href="https://github.com/Vallek/shower">Fork me on GitHub</a>
</footer>
<div class="progress"></div>
<script src="shower/shower.min.js"></script>
<script src="js/nav.js"></script>
</body>
</html>