-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (67 loc) · 2.2 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
<!DOCTYPE html>
<html>
<head>
<title>Graphics</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:600,900|Libre+Franklin:400,600,900">
<style type="text/css">
*{
margin: 0;
padding: 0;
}
body{
font-family: "Source Sans Pro";
}
#container{
width: 1920px;
height: 1080px;
display:flex;
justify-content:center;
align-items:center;
background-image: linear-gradient(-49deg, #99ccff, white);
}
#content{
width: 1200px;
font-weight: bold;
padding: 30px 50px;
}
h1{
width: auto;
float: left;
display: block;
position: relative;
font-family: "Source Sans Pro";
background: #006566;
color: #f3f3f3;
padding: 10px 22px;
margin: 0 0 15px 0;
font-weight: bold;
font-size: 60px;
letter-spacing: -2px;
text-transform: uppercase;
}
p{
width: 100%;
float: left;
display: block;
position: relative;
font-family: "Libre Franklin";
color: #006566;
font-size: 40px;
font-weight: 600;
}
</style>
</head>
<body>
<div id="container">
<div id="content">
<h1>Main Page</h1>
<p>
Hey Matt, check that you're using the direct links from the Google spreadsheet doc for your browser source. <br><br>
If you need help, just Discord DM me. <br>- Steve
</p>
</div>
</div>
</body>
</html>