-
Notifications
You must be signed in to change notification settings - Fork 0
/
pratica07exercicio02.css
68 lines (68 loc) · 1.02 KB
/
pratica07exercicio02.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
table {
border: 1px solid #3b5998;
border-collapse: collapse;
width: 38%;
height: 700px;
margin: 0 auto;
margin-top: 40px;
}
thead {
color: white;
background-color: #3b5998;
font-size: 33px;
font-weight: bold;
text-align: center;
}
.discip {
vertical-align: top;
color: #3b5998;
background-color: white;
font-weight: bold;
padding-top: 20px;
width: 130px;
}
tbody{
font-size: 24px;
}
td {
border: 1px solid #3b5998;
padding-left: 10px;
}
tbody tr:nth-child(odd) {
background-color: #dfe3ee;
}
tbody tr:nth-child(even) {
background-color: #889dc3;
}
.med {
background-color: #ff4500;
color: white;
}
.cabecalho {
height: 60px;
}
tbody td:hover {
background-color: #ff4500;
color: white;
}
thead td:hover {
color: #ff4500;
}
#textPost {
position: relative;
font-size: 30px;
color: white;
text-align: center;
top: -400px;
background-color: #3b5998;
width:500px;
}
#textPost02 {
position: relative;
font-size: 30px;
color: black;
text-align: center;
top: -400px;
background-color: #3f8437;
width:500px;
}