-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ejercicio10.css
90 lines (73 loc) · 1.78 KB
/
Ejercicio10.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
/**
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;
margin:0.5%;
color: black;
background-color:#c6c6c6;
}
/* Especificidad -> (0,0,1) */
p{
margin-left:1%;
}
/* Especificidad -> (0,1,1) */
input[type=button]{
border-style: groove;
border-color: rgb(0, 0, 0);
border-radius: 0.45em;
border-width: 0.2em;
padding: 1.5em;
margin-left: 2%;
font-size: 1em;
color: black;
background-color:#fffefe;
}
/* Especificidad (0,1,1) */
input[type=text] {
grid-column: span 5;
margin-top:0.3em;
margin-left:0.3em;
width: 30%;
font-size: 2em;
text-align: right;
}
/* Especificidad (0,1,1) */
input[type=date] {
font-size: 1.5em;
text-align: center;
}