-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.php
83 lines (72 loc) · 1.51 KB
/
welcome.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
?>
<html>
<head>
<title>Beautine</title>
<link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<style>
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
color: #B0BEC5;
display: inline-table;
font-weight: 100;
font-family: 'Lato';
}
.nav{
vertical-align: top;
text-align: right;
padding-bottom: 50px;
padding-top: 20px;
padding-right: 50px;
}
.container {
text-align: center;
/*
display: table-cell;
*/
vertical-align: middle;
}
.content {
text-align: center;
display: inline-block;
}
.title {
font-size: 96px;
margin-bottom: 40px;
color: white;
background-color: #B0BEC5;
}
}
.quote {
font-size: 24px;
}
.how-it-works{
font-size: 20px;
text-align: left;
padding-left: 45px;
}
</style>
</head>
<body>
<div class="nav">Login </div>
<div class="container">
<div class="content">
<div class="title">Beautine</div>
<div class="quote">
<h2>Keeping track of all your bloggers' routines just got a little easier</h2>
<br />
</div><!--.quote-->
<div class="how-it-works">
<p>STEP 1: Search for your guru by YouTube channel</p>
<p>STEP 2: Read a list of your blogger's staples</p>
<p>STEP 3: Save the list to your feed to remember what to try next</p>
</div> <!--.how-it-works-->
<!-- </div>
-->
</div><!--.content-->
</div><!--.container-->
</body>
</html>