-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
78 lines (65 loc) · 1002 Bytes
/
styles.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
71
72
73
74
75
76
77
78
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.etapasGroup {
display: flex;
gap: 30px;
}
.etapasGroup input {
width: 100%;
}
button {
margin: 20px 0;
}
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
border: 1px solid black;
padding: 2px;
text-align: center;
width: 10%;
overflow: hidden;
}
/* fundo do título */
th {
background: #b6b6b6;
}
/* cores alternadas */
tr:nth-child(odd) {
background: #e9e9e9;
}
/* largura da coluna de posição */
th:nth-child(2), td:nth-child(2) {
width: 0%;
}
/* largura da coluna de nome */
th:nth-child(3), td:nth-child(3) {
width: 20%;
}
.titulo {
display: flex;
gap: 20px;
align-items: center;
}
.titulo img {
width: 150px;
}
.descarte {
text-decoration: line-through;
opacity: 0.5;
color: red;
}
@media print {
.noPrint {
display: none !important;
}
div, table {
break-inside: avoid;
}
table {
font-size: 10px;
}
}