-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaintenance.html
139 lines (124 loc) · 2.15 KB
/
maintenance.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<title>Maintenance nathannicolle.fr</title>
<meta charset="utf-8">
<link href="css/all.css" rel="stylesheet">
<style type="text/css">
body
{
height: 100%;
width: 100%;
background-image: url("maintenance_background.jpg");
background-repeat: no-repeat;
background-size: cover;
font-family: consolas;
overflow: hidden;
}
h1
{
text-align: center;
word-wrap: break-word;
font-size: 2em;
}
h2
{
text-align: center;
word-wrap: break-word;
font-size: 1.7em;
}
#container
{
display: flex;
flex-direction: column;
transform: translateY(50%);
height: 100%;
max-width: 100%;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.container_sm
{
display: flex;
}
.social_media
{
font-size: 1.8em;
border: 3px solid white;
width: 34px;
height: 34px;
text-align: center;
border-radius: 50px;
padding: 5px;
transition: 0.5s;
}
.social_media i
{
color: white;
transition: 0.5s;
}
.social_media:hover
{
background-color: white;
}
.social_media:hover i
{
color: black;
animation-name: flash;
animation-duration: 2s;
}
#insta
{
margin-right: 5px;
}
@keyframes flash
{
50%
{
color: white
}
}
@media screen and (max-width: 1024px)
{
body
{
background-size: 400%;
}
#container
{
width: 100%;
}
h1
{
font-size: 3em;
}
h2
{
font-size: 2.7em;
}
.social_media
{
font-size: 3em;
border: 3px solid white;
width: 68px;
height: 68px;
}
}
</style>
</head>
<body>
<div id="container">
<h1>Maintenance du site nathannicolle.fr</h1>
<h2>La mise à jour du site sortira samedi 29 août à 18h (heure française)</h2>
<div class="container_sm">
<div class="social_media" id="insta">
<a href="https://www.instagram.com/nathannicolle2/" target="blank" title="@nathannicolle2"><i class="fab fa-instagram"></i></a>
</div>
<div class="social_media">
<a href="mailto:assistance@nathannicolle.fr" target="blank"><i class="far fa-envelope"></i></a>
</div>
</div>
</div>
</body>
</html>