-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-5.php
101 lines (98 loc) · 3.58 KB
/
page-5.php
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
<?php
/**
* The template for displaying pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages and that
* other "pages" on your WordPress site will use a different template.
*
* @package WordPress
* @subpackage Twenty_Fifteen
* @since Twenty Fifteen 1.0
*/
get_header(); ?>
<style>
.text-part{
z-index: 0;
width: 75%;
position: relative;
text-align: justify;
}
.pic-part{
position:absolute;
}
.pic-res{
display: none;
}
.text-part .odstavec1{
margin-top: 9%;
}
.text-part .odstavec2{
margin-top: 12%;
}
.text-part .odstavec3{
margin-top: 25%;
}
.text-part .odstavec4{
margin-top: 5%;
}
@media screen and (max-width: 60em) {
.text-part{
width: 70%;
}
}
@media screen and (max-width: 44em) {
.pic-part{
width: 100%;
position: relative;
}
.text-part{
width: 100%;
margin-right: 2%;
}
.text-part .odst{
margin-top: auto;
}
.text-part h2{
text-align: center;
}
.pic-part .pic-norm{
display: none;
}
.pic-res{
display: block;
}
}
</style>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<article class="hentry">
<header class="entry-header">
<h1>Simulátor</h1>
</header>
<div class="pic-part">
<img src="<?=get_bloginfo('template_directory');?>/img/Ship.png" style="width:100%;" class="pic-norm">
<img src="<?=get_bloginfo('template_directory');?>/img/ShipSmall.png" style="width:100%;" class="pic-res">
</div>
<div class="text-part">
<div class="odstavec1 odst">
<h2>Hlavní modul</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed suscipit nisi elementum tincidunt convallis. Vivamus consequat turpis blandit eleifend congue. Aenean sodales tincidunt dictum.</p>
</div>
<div class="odstavec2 odst">
<h2>Laboratoř</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed suscipit nisi elementum tincidunt convallis. Vivamus consequat turpis blandit eleifend congue. Aenean sodales tincidunt dictum.</p>
</div>
<div class="odstavec3 odst">
<h2>Servisní modul (záchod)</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed suscipit nisi elementum tincidunt convallis. Vivamus consequat turpis blandit eleifend congue. Aenean sodales tincidunt dictum.</p>
</div>
<div class="odstavec4 odst">
<h2>Přistávací modul</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed suscipit nisi elementum tincidunt convallis. Vivamus consequat turpis blandit eleifend congue. Aenean sodales tincidunt dictum.</p>
</div>
</div>
</article>
</main><!-- .site-main -->
</div><!-- .content-area -->
<?php get_footer(); ?>