-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ejercicio9.css
63 lines (52 loc) · 1.38 KB
/
Ejercicio9.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
/**
UO278036
*/
/* Especificidad -> (0,0,1) */
body {
color: #353535;
background-color:white;
line-height: 1.4;
font: 1.4em Palatino,serif ;
border-radius: 1em;
}
footer{
border-style: solid;
border-color: rgb(0, 0, 0);
border-radius: 0.75em;
background-color: #4e7c9c;
color: black;
}
/* Especificidad -> (0,0,1) */
h1{
color: white;
background-color: #4e7c9c;
text-align: center;
font-size: xx-large;
}
/* Especificidad -> (0,0,1) */
h2{
border-style: solid;
border-color: rgb(0, 0, 0);
border-radius: 0.45em;
color: black;
background-color:#4e7c9c;
}
/* Especificidad -> (0,0,1) */
section, article{
border-style: solid;
border-color: rgb(0, 0, 0);
border-radius: 0.45em;
border-width: 0.2em;
color: black;
background-color:#c6c6c6;
}
/* Especificidad -> (0,0,1) */
input[type=button]{
border-style: solid;
border-color: rgb(0, 0, 0);
border-radius: 0.45em;
border-width: 0.2em;
margin: 0.45em;
color: black;
background-color:#c6c6c6;
}