-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (124 loc) · 3.92 KB
/
index.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
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title></title>
<style media="screen">
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
font-family: courier new;
font-size: 12px;
color: #46553f;
background-color: white;
}
header {
display: flex;
width: 100vw;
background-color: #77906b;
color: white;
min-height: 320px;
}
header .blurb {
flex: 1;
padding: 24px 24% 12px 12px;
font-size: 2.2em;
}
.logo {
color: #46553f;
background-color: white;
font-size: 2.5em;
font-weight: normal;
width: 240px; height: 240px;
padding: 12px;
display: flex;
flex-direction: column;
justify-content: flex-end;
}
section {
width: 100vw;
min-height: 95vh;
display: flex;
}
section.slogan {
background-color: #77906b;
color: white;
font-size: 2em;
justify-content: space-around;
padding: 60px;
min-height: auto;
}
section > p {
padding: 24px 24% 24px 24px;
}
section:nth-child(even) {
background-color: #77906b;
color: white;
}
hr {
margin: 2px 0px;
border-top: solid 1px #77906b;
border-left: none;
border-right: none;
border-bottom: none;
}
footer {
display: flex;
flex-direction: row;
background-color: #77906b;
color: white;
padding: 24px;
justify-content: space-between;
}
footer > div {
font-size: 1.4em;
}
@media (orientation: portrait) {
header {
flex-direction: column;
}
header .blurb {
flex: 1;
padding: 24px 12px;
font-size: 1.6em;
}
section > p {
padding: 24px;
}
}
</style>
</head>
<body>
<header>
<div class="logo">
<div>python<em>.</em></div>
<div>systems</div>
</div>
<div class="blurb">
<em>python.systems</em> is a small team of experienced industry experts with decades of experience in designing and implementing python and django systems for both the private and public sectors.
</div>
</header>
<hr>
<section class="slogan">in_indentation_we_trust</section>
<hr>
<section>
<p>
Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.
</p>
</section>
<footer>
<div class="right">
<div>Contact</div>
<div>About</div>
</div>
<div class="left">
<div>© 2020</div>
</div>
</footer>
</body>
</html>