-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (65 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="cache-control" content="no-store,max-age=0" />
<meta name="robots" content="noindex" />
<title>Test</title>
<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=Roboto+Mono:wght@600&display=swap" rel="stylesheet">
</head>
<body class="flipdown__theme-dark">
<div class="header">
<div class="row">
<div class="col">
<h1>Test</h1>
</div>
</div>
</div>
</body>
<style>
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
body {
margin: 0;
padding: 0;
height: 100vh;
-webkit-text-size-adjust: 100%;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
overflow: hidden;
font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
.row {
display: flex;
}
.col {
flex:1;
padding: 0 30px;
}
.header {
z-index: -1;
position: relative;
}
.header .row {
background-color: #db011c;
}
.header .col {
display: flex;
justify-content: space-between;
align-content: center;
align-items: center;
padding: 20px 100px;
}
</style>
</html>