-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathno.html.bak
60 lines (56 loc) · 1.27 KB
/
no.html.bak
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
<!DOCTYPE html>
<html>
<head>
<title>Página web en mantenimiento</title>
<meta charset="utf-8"/>
<meta name="description" content="Ejemplo práctico de aplicación del posicionamiento fijo"/>
<meta name="author" content="francesc ricart"/>
<style>
/*TIPOGRAFÍAS*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans');
/*INICIALIZACIÓN DE ESTILOS*/
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{background-color:#f6f6f6;}
/*PERSONALIZACIÓN DE P.MANTENIMIENTO*/
.mantenimiento{
width:600px;
height:400px;
padding:32px;
border:1px solid #000;
border-radius:10px;
margin-top:-200px;
margin-left:-300px;
background-color:#fff;
position:fixed;
top:50%;
left:50%;
}
.mantenimiento h1, .mantenimiento h2, .mantenimiento p{
font-family:"noto sans", sans-serif;
}
.mantenimiento h1{
font-size:3em;
text-align:center;
padding:16px;
}
.mantenimiento h2{
font-size:2em;
font-style:italic;
}
.mantenimiento p{
margin:16px 0;
line-height:1.5em;
}
</style>
</head>
<body>
<div class="mantenimiento">
<h1>Página web en construcción</h1>
<p>Lo sentimos, no hemos encontrado un mensaje más original para decirte que estamos trabajando en ello :D</p>
</div>
</body>
</html>