-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (70 loc) · 1.93 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
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
</head>
<body>
<div class="container">
<a class="nav" href="add.html" target="_blank">
Самая красивая девушка
</a>
<a class="nav" href="add2.html" target="_blank">
Самая стилевая девушка
</a>
<a class="nav" href="add3.html" target="_blank">
Самая бодрая девушка
</a>
</div>
<style>
html, body {
height: 100%;
width: 100%;
}
body {
margin: 0;
}
body > div {
display: flex;
height: 100%;
width: 100%;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
}
body > div > a {
display: flex;
color: black;
text-decoration: none;
font-size: 32px;
font-family: "American Typewriter";
width: 200px;
height: 112px;
transition: 250ms;
box-shadow: 3px 6px 0 dimgrey;
background-color: floralwhite;
border: 3px solid black;
border-radius: 9px;
padding: 6px;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
body > div > a:nth-child(1) {
background-image: url("https://emoji.aranja.com/static/emoji-data/img-apple-160/1f60d.png");
}
body > div > a:nth-child(2) {
background-image: url("https://emoji.aranja.com/static/emoji-data/img-apple-160/1f608.png")
}
body > div > a:nth-child(3) {
background-image: url("https://emoji.aranja.com/static/emoji-data/img-apple-160/1f62a.png");
}
body > div > a:hover {
box-shadow: 0 0 0;
transition: 250ms ease-in-out;
transform: translateY(6px) translateX(3px);
}
</style>
</body>
</html>