-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
70 lines (59 loc) · 1.16 KB
/
estilo.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
/* Especificidad: (0, 0, 1) */
body {
font-family: "Lucida Console", sans-serif;
line-height: 2.2;
color: #000000;
background-color: aliceblue;
}
/* Especificidad: (0, 0, 1) */
li {
list-style-type: upper-roman;
}
/* Especificidad: (0, 0, 1) */
h1 {
height: 100%;
background-color:#5645f3;
color: rgb(2, 0, 0);
text-transform: uppercase;
text-align: center;
font-size: 50px;
}
/* Especificidad: (0, 0, 1) */
nav {
background-color: #e9a7e9;
color: #000000;
font-weight: bold;
font-size: 20px;
}
/* Especificidad: (0, 0, 1) */
main {
background-color: aliceblue;
color: #000;
}
/* Especificidad: (0, 0, 1) */
ul {
list-style-type: circle;
}
/* Especificidad: (0, 0, 1) */
footer {
text-align: center;
color:#b6442a;
background-color: #F1F5FE;
font-weight: bold;
font-size: 18px;
}
/* Especificidad: (0, 0, 1) */
table {
width: 100%;
border: 1px solid #000;
}
/* Especificidad: (0, 0, 1) */
th, td {
width: 15%;
text-align: left;
vertical-align: top;
border: 1px solid #000;
border-collapse: collapse;
padding: 0.3em;
caption-side: bottom;
}