-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (52 loc) · 847 Bytes
/
style.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
body{
margin: 0;
font-family: 'Titillium Web', sans-serif;
}
.cabecera {
height: 130px;
background: #8e0000;
color: white;
}
.cabecera h1 {
padding-left: 35px;
padding-top: 17px;
font-size: 40px;
margin-top: 0;
}
.cuerpo {
display: flex;
background-color: rgb(228, 201, 201);
}
.menu {
background: #c62828;
width: 500px;
height: 100vh;
}
ul {
list-style: none;
display: flex;
flex-direction: column;
height: 153px;
justify-content: space-between;
padding-left: 20px;
}
ul li a {
text-decoration: none;
color: white;
font-size: 20px;
}
.contenido {
margin-left: 30px;
display: flex;
flex-direction: column;
}
h3 {
margin-bottom: 0;
}
.contenido p {
margin-top: 0;
}
.contenido img {
width: 450px;
margin-left: 500px;
}