-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (79 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Dev Meetup Visby</title>
<link href="https://fonts.googleapis.com/css?family=Great+Vibes|Oswald" rel="stylesheet">
<style>
html {
background: url(./pattern.svg) no-repeat center center fixed, url("./bg.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-blend-mode: lighten;
}
html,
body {
height: 100%;
}
body {
margin: 0;
}
.bg {
/* The image used */
z-index: 500;
/* Full height */
min-height: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.flex-container {
height: 100%;
padding: 0;
margin: 0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items: center;
justify-content: center;
}
.row {
width: auto;
}
.flex-item {
line-height: 20px;
color: white;
font-weight: bold;
font-size: 2em;
text-align: center;
}
h1 {
font-family: 'Oswald', sans-serif;
text-transform: uppercase;
font-size: 3em;
}
h2 {
font-family: 'Great Vibes', cursive;
}
</style>
</head>
<body>
<div class="flex-container">
<div class="row">
<div class="flex-item">
<h1>
<b>- Dev Meetup -</b>
</h1>
<h2>Visby</h2>
</div>
</div>
</div>
</body>
</html>