-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle-tr.css
More file actions
94 lines (76 loc) · 1.28 KB
/
style-tr.css
File metadata and controls
94 lines (76 loc) · 1.28 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@charset "UTF-8";
:root {
--cor: rgb(107, 107, 107);
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: brown;
}
main {
max-width: 1000px;
min-width: 300px;
margin: auto;
margin-bottom: 30px;
padding: 20px;
background-color: white;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.418);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
caption {
font-size: 1.3em;
font-weight: bolder;
padding: 8px;
}
table {
width: 1000px;
border-collapse: collapse;
}
tr.linha {
background-color: black;
}
th, tr, td {
border: 1px solid black;
padding: 6px;
}
thead {
background-color: var(--cor);
color: white;
}
div.p {
overflow: auto;
}
td {
text-align: right;
}
.colorido {
background-color: var(--cor);
color: white;
}
.negrito {
font-weight: bold
}
#pet {
background-color: var(--cor);
}
hr {
width: 100%;
height: 2px;
background-color: var(--cor);
}
footer {
background-color: var(--cor);
color: white;
text-align: center;
font-size: 0.8em;
padding: 5px;
}
footer > p > a {
color: white;
font-weight: bolder;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
color: rgb(41, 5, 5)
}