-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilos.css
More file actions
39 lines (32 loc) · 720 Bytes
/
estilos.css
File metadata and controls
39 lines (32 loc) · 720 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'opern sans';
}
.contenedor{
padding: 60px 0;
width: 90%;
max-width: 1000px;
margin: auto;
overflow: hidden;
}
.titulo{
color: #642a73;
font-size: 30px;
text-align: center;
margin-bottom: 60px;
}
/*header*/
header{
width: 100%;
height: 600px;
background: #bc4e9c;
/* fallback for old browsers */
background: -webkit-linear-gradient(to right, #f80759, #bc4e9c);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #f80759, #bc4e9c), url(../img/portada.jpg);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}