forked from z-------------/New-New-Tab-Page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
69 lines (69 loc) · 1.87 KB
/
welcome.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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to New New Tab Page</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:100">
<style>
* {
font-family:Roboto,sans-serif;
color:#fff;
font-weight:100;
}
body {
background-color:#4c4c4c;
height:100%;
width:100%;
margin:0;
padding:0;
}
h1 {
font-size:50px;
}
h1 span {
font-size:80px;
}
#container {
/*border:solid 1px #fff;*/
position:absolute;
top:50%;
left:0;
width:100%;
text-align:center;
margin:-200px 0 0 0;
}
input[type=button] {
padding:20px;
border:solid 2px #fff;
background-color:transparent;
transition:all .2s;
font-size:20px;
border-radius:10px;
cursor:pointer;
margin:50px 0 50px 0;
}
input[type=button]:hover {
background-color:#fff;
color:#4c4c4c;
}
input:focus {
outline:none;
}
#container span {
display:block;
}
</style>
<script src="welcome.js"></script>
</head>
<body>
<div id="container">
<h1>
Welcome to
<span>New New Tab Page</span>
</h1>
<p>
Thanks for installing New New Tab Page. ILY
</p>
<input type="button" value="Continue">
</div>
</body>
</html>