-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathestilo-basico.css
More file actions
67 lines (63 loc) · 1.08 KB
/
estilo-basico.css
File metadata and controls
67 lines (63 loc) · 1.08 KB
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
body{
font-size: 1.1em;
font-family: trebuchet ms, verdana, helvetica, sans-serif;
color: #444;
}
input{
font-size: 1.1em;
border-radius: 4px;
padding: 5px;
}
select{
font-size: 1.2em;
}
h1, h2{
color: #b11938;
}
label{
width: 120px;
display: inline-block;
font-weight: bold;
}
a.accion{
display: inline-block;
padding: 10px;
border-radius: 4px;
border: 1px solid #ccc;
color: #fff;
background-color: #1469c9;
cursor: pointer;
}
a.accion:hover{
background-color: #33c677;
}
table{
width: 95%
}
th{
background-color: #b11938;
padding: 5px;
color: #fff;
cursor: pointer;
}
td{
background-color: #ddd;
padding: 5px;
}
tr.drama td {
background-color: #dcc;
}
tr.comedia td{
background-color: #cdc;
}
tr.documental td{
background-color: #ccd;
}
.ordenarriba, .ordenabajo{
background-image: url(/05-practica-scope/img/arriba.png);
background-position: right;
background-repeat: no-repeat;
}
.ordenabajo{
background-image: url(/05-practica-scope/img/abajo.png);
}