-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
191 lines (171 loc) · 5 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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>Siter | making business simple</title>
<meta name="description" content="Web software engineering" />
<meta name="author" content="Siter Pty Ltd">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="/images/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/images/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="/images/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/images/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="/images/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/images/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/images/apple-touch-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-180x180.png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Monofett&family=Poppins&display=swap" rel="stylesheet">
<style media="screen">
:root {
--main-text-color: #430560;
--bg-color: #eef6fe;
--text-color-footer: #56596e;
--logo-color-bg: #FFE882;
}
* {
box-sizing: inherit;
}
html {
font-size: 16pt;
height: 100%;
box-sizing: border-box;
}
body {
font-family: "Poppins", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
color: var(--main-text-color);
background-color: var(--bg-color);
padding:0;
min-height: 100vh;
display: grid;
grid-template-rows: auto 1fr auto;
margin: 0;
}
img svg {
fill: var(--main-text-color);
}
p {
line-height: 1.5;
}
.poppins-regular {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}
.monofett-regular {
font-family: "Monofett", monospace;
font-weight: 400;
font-style: normal;
}
.container {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.item {
max-width: 50%;
min-width: 320px;
}
h1 {
font-size: 6rem;
font-weight: 900;
margin: 0;
padding: 0;
}
h1.monofett-regular {
margin: -1.8rem 0 0;
}
h2 {
font-weight: 600;
margin: 0;
font-size: 1.5rem;
letter-spacing: -0.07rem;
}
footer {
padding: 30px 20px;
color: var(--text-color-footer);
text-transform: lowercase;
font-size: 0.75rem;
text-align: center;
align-self: last baseline;
}
.logo {
padding: 40px 0;
margin: auto;
fill: var(--text-color-footer);
max-width: 50%;
display: block;
transition: fill 500ms ease-out;
}
.logo:hover {
fill: currentColor;
transition: fill 500ms ease-out;
}
@media screen and (max-width: 800px){
html {
font-size: 14pt;
}
.item {
max-width: 80%;
}
.logo {
width: 100px;
padding: 30px 0;
}
}
@media screen and (max-width: 480px){
html {
font-size: 12pt;
}
.logo {
width: 80px;
}
footer {
padding: 5px;
}
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-43EZ3GN3CR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-43EZ3GN3CR');
</script>
</head>
<body>
<main class="page-body">
<div class="container">
<div class="item">
<svg class="center-image logo" width="100%" height="100%" viewBox="0 0 160 176">
<use href="/images/siter-logo-simple.svg#siter-logo"></use>
</svg>
</div>
</div>
<div class="container">
<section class="item">
<h1 class="monofett-regular">Siter</h1>
<h2 class="poppins-regular">
making business simple <br />with smart tech
</h2>
</section>
</div>
</main>
<footer class="container">
<section class="item">
<p>
Siter Pty Ltd · ABN 87146759266<br />
Australia
</p>
</section>
</footer>
</body>
</html>