-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtarefa.css
66 lines (63 loc) · 1.12 KB
/
tarefa.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
.tabelaPedido{
width: 100%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.tbody td{
border-bottom: 2px solid #DEE2E6;;
}
.tabelaPedido td {
padding: 10px 15px;
color: #868686;
text-align: left;
}
.tabelaPedido th {
text-align: left;
padding: 15px 15px;
background-color: #DEE2E6;
color: #6B6C6D;
}
.cinzaEscuro{
color: #6B6C6D;
}
.cinzaClaro{
color: #868686;
}
.cinzaBemClaro{
color: #DEE2E6;
}
.azul{
color: #007bff;
}
.verde{
color: #28a745;
}
.vermelho{
color: #E82431;
}
.amarelo{
color: #FDDF4C;
}
.entregue{
border-radius: 5px;
color: #ffffff;
text-align: center;
background-color: #28a745;
padding: 5px 15px;
margin-right: 50px;
}
.pendente{
border-radius: 5px;
color: #ffffff;
text-align: center;
background-color: #007bff;
padding: 5px 15px;
margin-right: 50px;
}
.cancelado{
border-radius: 5px;
color: #ffffff;
text-align: center;
background-color: #E82431;
padding: 5px 15px;
margin-right: 50px
}