-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lunant</title>
<link rel="stylesheet" type="text/css" href="reset.css">
<style type="text/css">
* { font-family: Consolas, monaco, monospace; }
html, body {
height: 100%;
text-align: center;
color: #ffffff;
}
a, a:link, a:active, a:visited { color: #b7b1d1; }
input {
font-size: 1.25em;
padding: 10px 15px 8px 15px;
border: 0;
border-radius: 10px;
outline:0;
}
button {
color: #fff;
border: 0;
margin-left: 0.5em;
font-size: 1.25em;
padding: 10px 20px 8px 20px;
border-radius: 10px;
background-image: linear-gradient(to bottom, #7200ff, #ff00ba);
}
a:hover {
background-image: url('http://dl9.glitter-graphics.net/pub/80/80039njfma9svnd.gif');
}
button:hover {
background-image:
url('http://dl9.glitter-graphics.net/pub/80/80039njfma9svnd.gif'),
linear-gradient(to bottom, #7200ff, #ff00ba);
}
@media screen and (max-width: 400px) {button {margin-top:1em;} }
</style>
</head>
<body>
<div style="padding: 50vh 20px 0 20px;">
<p>Lunant.net</p>
</div>
</body>
</html>