-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (87 loc) · 1.73 KB
/
style.css
File metadata and controls
99 lines (87 loc) · 1.73 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
94
95
96
97
98
99
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@500&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,700;1,700&display=swap%27");
body {
padding: 0;
margin: 0;
font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.container {
width: 100vw;
height: 100vh;
margin-left: auto;
margin-right: auto;
display: flex;
justify-content: center;
align-items: center;
}
.table {
width: 76%;
margin-bottom: 16px;
border-spacing: 0 16px;
border-collapse: separate;
}
.tr-thead {
vertical-align: middle;
border: none;
text-align: center;
font-size: 14px;
font-weight: 700;
}
.tr-tbody {
vertical-align: middle;
border: none;
text-align: center;
height: 48px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
font-size: 14px;
font-weight: 300;
}
.tr-tbody td:nth-child(1) {
border-radius: 5px 0 0 5px;
}
.tr-tbody td:nth-last-child(1) {
border-radius: 0 5px 5px 0;
}
.tr-tbody:hover {
cursor: pointer;
background-color: #f5f5f54d;
transform: scale(1.002);
}
.container-seq,
.container-item,
.container-desc,
.container-um,
.container-qtde,
.container-valor-total,
.container-dep,
.container-localizacao,
.container-saldo,
.container-qtde-atend {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.content-desc {
width: 250px;
padding: 14px 0px 14px 0px;
text-align: center;
word-break: break-word;
}
/*
.content-desc {
width: 220px;
text-align: center;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
*/
.select-menu {
width: 160px;
height: 32px;
border: 1px solid rgb(206, 201, 201);
border-radius: 4px;
text-align: center;
font-size: 14px;
}