-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (47 loc) · 892 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
body {
background:teal; /* Fondo del viewport */
color: rgb(231, 218, 27);
text-align: center;
font-family: cursive;
font-size: 16px;
margin: 0;
padding: 0;
}
#cabecera {
background:chartreuse;
box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.5);
color: white;
font-weight: bold;
margin: 0;
padding: 0.5em 0 0.5em 2em;
}
#cabecera #logo {
width: 40px;
vertical-align: middle; /* Centrar texto e imagen */
}
#cabecera #tagline {
margin: 0 0 0 1em;
font-weight: normal;
font-size: 0.8em;
}
#container {
width: 71%;
padding: 0;
text-align: left;
border: 1.1px solid;
margin: 0 auto;
}
#container h1 {
font-size: 20px;
}
#post {
padding 1em
background: red;
}
#footer {
background: #777;
color:white;
text-align: center;
padding:0.5em;
}
/* masterr3 */