-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
53 lines (51 loc) · 872 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style>
* {box-sizing: border-box;}
body {
margin: 0;
font-family: sans-serif;
background:#000;
text-align: center;
background-image: url(bg.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.container {
overflow: hidden;
background-color: black;
text-align:center;
}
.container a {
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 18px;
text-transform: uppercase;
}
.container a::before {
content:'';
width:0%;
height:3px;
display:block;
background-color: #fff;
margin-bottom:10px;
}
.container a:hover::before {
width:100%;
transition:all .5s;
}
</style>
</head>
<body>
<div class="container">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
<a href="#">Login</a>
</div>
</body>
</html>