-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
118 lines (102 loc) · 3.33 KB
/
index.php
File metadata and controls
118 lines (102 loc) · 3.33 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
height: 100%;
margin: 0;
font: 400 15px/1.8 "Lato", sans-serif;
color: #777;
}
.bgimg-1, .bgimg-2, .bgimg-3 {
position: relative;
opacity: 0.65;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bgimg-1 {
background-image: url("assets/likebyte.ro_top.png");
min-height: 100%;
}
.bgimg-2 {
background-image: url("assets/likebyte.ro_middle.png");
min-height: 500px;
}
.bgimg-3 {
background-image: url("assets/likebyte.ro_bottom.png");
min-height: 500px;
}
.caption {
position: absolute;
left: 0;
top: 50%;
width: 100%;
text-align: center;
color: #000;
}
.caption span.border {
background-color: #111;
color: #fff;
padding: 18px;
font-size: 25px;
letter-spacing: 10px;
}
h3 {
letter-spacing: 5px;
text-transform: uppercase;
font: 20px "Lato", sans-serif;
color: #111;
}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: scroll;
}
.caption span {
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="bgimg-1">
<div class="caption">
<span class="border">HELLO, I'M BYTE!</span>
</div>
</div>
<div style="color: #777;background-color:white;text-align:center;padding:50px 80px;text-align: justify;">
<h3 style="text-align:center;">Professional good boy</h3>
<p>
I am a Jack Russel Terrier. Very decent, responsible dog with a sharp sense of justice. I am a qualified rabbit-hunter and loud-barker.
</p>
</div>
<div class="bgimg-2">
<div class="caption">
<span class="border" style="background-color:#282E34;font-size:25px;color: #f7f7f7;">Family is important</span>
</div>
</div>
<div style="position:relative;">
<div style="color:#ddd;background-color:#282E34;text-align:center;padding:50px 80px;text-align: justify;">
<p>I live with the greatest human on Earth and go with him to work every day. </p>
</div>
</div>
<div class="bgimg-3">
<div class="caption">
<span class="border" style="background-color:#282E34;font-size:25px;color: #f7f7f7;">I AM JACK RUSSELL</span>
</div>
</div>
<div style="position:relative;">
<div style="color:#ddd;background-color:#282E34;text-align:center;padding:50px 80px;text-align: justify;">
<p>The Jack Russell Terrier has its origins in fox hunting. Jack Russells are an energetic breed that rely on a high level of exercise and stimulation and are relatively free from serious health complaints. </p>
</div>
</div>
<div class="bgimg-1">
<div class="caption">
<span class="border">I AM COOL!</span>
</div>
</div>
</body>
</html>