-
Notifications
You must be signed in to change notification settings - Fork 3
/
page_style_sheet.css
116 lines (102 loc) · 2.11 KB
/
page_style_sheet.css
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
@font-face{
font-family: Neucha; src: url(./assets/font/neucha.otf)
}
img{
display: block;
margin-left: auto;
margin-right: auto;
size:initial;
}
/* Formato del encabezado */
header{
/* Posición siempre en la parte superior */
position:fixed;
/* Ancho y alto */
width:100%;
height:50px;
/* Color de fondo y bordes */
background: rgba(83, 71, 65, 0.582);;
border-bottom: 4px solid rgb(26, 26, 26);
border-left: 4px solid rgb(26, 26, 26);;
}
a{
/* Fuente */
font-family: Neucha, bold;
/* Formato */
text-decoration:underline;
/* Color */
color: rgb(26, 26, 26);
/* Tamaño */
font-size: 150%;
}
h1{
/* Fuente */
font-family: Neucha, bold;
/* Color */
color: rgb(26, 26, 26);
/* Tamaño */
font-size: 300%;
}
h2{
/* Fuente */
font-family: Neucha, bold;
/* Color */
color: rgb(26, 26, 26);
/* Tamaño */
font-size: 100%;
text-align: center;
}
p{
/* Fuente */
font-family: Neucha;
/* Formato */
text-decoration:none;
/* Color */
color: rgb(26, 26, 26);
/* Tamaño */
font-size: 140%;
margin:auto;
}
nav{
/* Ajustamos el margen para que este centrado */
margin: auto;
/* Alineamos el texto al centro */
text-align: center;
/* Ancho del menú dentro de la barra */
width:1000px;
}
nav link{
/* Posicion en el bloque */
display: inline-block;
margin-left: 80px;
}
nav ul{
/* Sin margen */
margin: 10;
padding: 0;
list-style: none;
}
/* Cosas de los enlaces del header */
nav a{
/* Fuente */
font-family: Neucha, bold;
/* Formato */
text-decoration:none;
/* Color */
color:#000000;
/* Tamaño */
font-size: 150%;
}
/* Cuando pones el ratón encima de las palabras del header */
nav a:hover{
color: rgb(80, 80, 80);
}
/* Formato del cuerpo */
body {
/* Imagen de fondo del cuerpo */
background: url("./assets/media/background.png") center top;
/* Cubre toda la pantalla */
background-size: cover;
margin:0px;
min-height: 100%;
}