-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.05 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Ropa+Sans&display=swap" rel="stylesheet">
<style>
body {
padding: 0;
margin: 0;
background-color: #eaef9d;
font-family: 'Ropa Sans', sans-serif;
}
#root {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
margin: center;
}
.content {
padding: 1rem 0;
font-size: 2.5rem;
}
@media only screen and (max-width: 640px) {
.content {
max-width: 320px;
font-size: 1.5rem;
}
img {
width: 180px;
}
}
</style>
</head>
<body>
<section id="root">
<div>
<img src="assets/logo.png" width="240" />
</div>
<div class="content">
<span> Em breve um site fantástico 💙! </span>
</div>
</section>
</body>
</html>