This repository was archived by the owner on Jun 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (64 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
75 lines (64 loc) · 1.28 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Brum.js</title>
<style>
html, body {
margin: 0;
padding: 0;
border: 0;
width: 100%;
height: 100%;
background-color: #FFDD00;
display: table;
}
.info-wrapper {
display: table-cell;
vertical-align: middle;
text-align: center;
font-family: 'Helvetica', sans-serif;
}
.info-wrapper h1 {
font-weight: normal;
font-size: 20vw;
text-transform: uppercase;
margin: 0;
margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
.info-wrapper h1 {
font-size: 153px;
}
}
.info-wrapper h2 {
font-weight: lighter;
font-size: 4.5vw;
margin: 0;
margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
.info-wrapper h2 {
font-size: 35px;
}
}
.join-button {
display: inline-block;
border-radius: 7px;
width: 8rem;
height: 4rem;
line-height: 4rem;
font-size: 1.5rem;
background-color: #006DFF;
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<article class="info-wrapper">
<h1>Brum.js</h1>
<h2>We meet monthly to talk about JavaScript</h2>
<a href="https://www.meetup.com/meetup-group-MzfqIqCy/" class="join-button">Join us</a>
</body>
</html>