forked from ETombuyses/git-github-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (97 loc) · 3.11 KB
/
index.html
File metadata and controls
97 lines (97 loc) · 3.11 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>A Pen by blyndusk</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="css/style.css"><meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet">
<style>
body {
font-family: "Questrial", cursive;
}
header {
background: #EEEEEE;
box-shadow: 0px -50px 284px -8px #595959;
display: flex;
align-items: center;
height: 10vh;
}
footer {
background: #EEEEEE;
box-shadow: 0px -18px 198px -48px rgba(0,0,0,1);
height: 8vh;
padding: 0 25px;
display: flex;
align-items: center;
font-weight: 500;
font-size: 22px;
}
header a {
color: #E39774;
width: 100%;
font-weight: 200;
font-size: 32px;
text-decoration: none;
}
h1 {
width: 100%;
text-align: center;
}
nav {
width: calc(100% - 2 * 50px);
height: calc(82vh - 2 * 50px);
padding: 50px;
text-align: center;
}
nav a {
color: #326273;
padding: 2px 5px;
font-size: 22px;
text-decoration: none;
position: relative;
overflow: hidden;
z-index: 1;
transition: all 0.5s ease;
}
nav a:before {
content: '- ';
}
nav a:first-child:before {
content: '';
}
nav a:after {
content: '';
background: #E39774;
border-radius: 100%;
height: 150px;
width: 150px;
position: absolute;
top: 50%;
left: 50%;
z-index: -1;
transform: translate(-50%, -50%) scale(0);
}
nav a:hover:after {
opacity: 0;
z-index: -1;
transform: translate(-50%, -50%) scale(0.5);
transition: all 0.3s ease-out;
}
</style>
</head>
<body>
<header>
<h1><a href="https://github.com/blyndusk/git-github-ws">git-github-ws</a></h1>
</header>
<nav>
<a href="https://github.com/blyndusk">Alexandre Delaloy (blyndusk)</a>
<a href="https://github.com/sundowndev">Raphaël Cerveaux (sundowndev)</a>
</nav>
<footer>
<p>2018</p>
</footer>
</body>
</html>