-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
executable file
·60 lines (59 loc) · 1.59 KB
/
index.php
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
<!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">
<style>
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,900');
html, body {
height:100%;
width: 100%;
margin: 0;
color: white;
background: black;
font-family: "Source Sans Pro";
font-weight: 400;
font-style: normal;
text-align: center;
}
body {
background:
linear-gradient( rgba(4, 14, 51, 0.85), rgba(10, 29, 105, 0.75), rgba(4, 14, 51, 0.85) ),
url('https://libertyjs.com/wp-content/uploads/2019/02/439.jpg');
background-size: cover;
background-position: center;
}
.center {
display: flex;
flex-direction: column;
height: 100%;
justify-content: center;
}
img {
align-self: center;
max-width: 280px;
width: 70%;
}
p {
margin: 0.5em;
}
.dates {
font-size: 44px;
}
.venue {
font-size: 30px;
}
</style>
<title>LibertyJS - Philadelphia JavaScript Conference</title>
</head>
<body>
<div class="center">
<img src="https://libertyjs.com/wp-content/uploads/2019/02/logo-Dark-BG.png" alt="Liberty JS Logo">
<p class="dates">October 24-25, 2019</p>
<p class="venue">National Museum of American Jewish History</p>
<p class="venue">Philadelphia, PA</p>
<p><a href="https://www.papercall.io/libertyjs-2019" style="color: #ffc214;">CFP is now open!</a></p>
</div>
</body>
</html>