-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEjercicio6.css
69 lines (61 loc) · 1.16 KB
/
Ejercicio6.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
/*Especificidad: 001*/
body {
font-family: Tahoma, sans-serif;
color: #000000;
background-color: #d5e3f8;
}
/*Especificidad: 001*/
h1 {
text-transform: uppercase;
text-align: center;
}
/*Especificidad: 001*/
a{
color:rgb(45, 30, 179);
background-color: #d5e3f8;
}
/*Especificidad: 001*/
h2 {
text-transform: uppercase;
text-align: left;
}
/*Especificidad: 001*/
h3{
margin-left: 50px;
}
/*Especificidad: 001*/
p{
text-align: left;
}
/*especificidad 001*/
table{
text-align: left;
border-collapse: collapse;
width: 90%;
margin: auto;
box-shadow: 7px 13px 37px black;
}
/*especificidad 001*/
caption{
font-size: 20px;
font-weight: bold;
margin-bottom: 1em;
}
/*especificidad 001*/
th, tr, td{
background-color: #F5DCB3;
border: solid 1px black;
padding: 10px;
color:#000;
}
/*Especificidad: 001*/
input{
font-size: large;
margin-top: 1em;
margin-bottom: 1em;
}
/*Especificidad: 003*/
body>form>input{
background: rgb(131, 240, 234);
color:#000;
}