-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
184 lines (145 loc) · 3.05 KB
/
Copy pathstyles.css
File metadata and controls
184 lines (145 loc) · 3.05 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
* {
font-family: 'Roboto', sans-serif;
box-sizing: border-box;
margin: 0;
padding: 0;
}
body, html {
background-color: #000000;
color: #ffffff;
}
a, a:hover, a:visited {
color: unset;
text-decoration: none;
}
header{
background: linear-gradient(180deg, #102347 0%, #181818 100%);
height: 220px;
display: flex;
align-items: center;
justify-content: center;
}
.dsmeta-logo-container {
display: flex;
flex-direction: column;
align-items: center;
}
.dsmeta-logo-container img {
width: 235px;
height: 106.07px;
left: 43px;
top: 28px;
}
.dsmeta-logo-container h1 {
margin-top: 15px;
font-size: 24px;
}
.dsmeta-logo-container p {
font-size: 14px;
font-weight: 300;
}
.dsmeta-card {
background-color: #283142;
border-radius: 10px ; /* Para arredondar as bordas do card */
padding: 30px 10px ; /* Espaçamento interno do Card */
}
.dsmeta-sales-title{
color: #676FFF;
font-size: 24px;
margin-bottom: 20px ; /*Margem abaixo*/
}
.dsmeta-form-control-contaner{
margin-bottom: 16px;
max-width: 300px;
}
.dsmeta-form-control { /* */
width: 100%;
height: 46px ;
background-color: #1B2531 ;
border: 1px solid #384459 ;
border-radius: 5px;
color: #9AAABE;
padding: 0 20px ;
font-size: 18px;
}
.dsmeta-sales-table{
width: 100%;
border-spacing: 0; /*Espaçamento entre as bordas da tabela*/
border-collapse: collapse ;
}
.dsmeta-sales-table thead{
height: 55px;
font-size: 16px;
color: #E9E9E9;
font-weight: 700px ;
}
.dsmeta-sales-table tbody{
font-size: 14px;
font-weight: 400px ;
color: #CFCFCF;
text-align: center ;
}
.dsmeta-sales-table tbody tr{
height: 74px ; /* Altura da linha */
border-top: 1px solid #5F6E82; /*Borda de cima */
}
/* Quando passa o mouse em cima*/
.dsmeta-sales-table tbody tr:hover > td{
background-color: #384459;
}
/* Filho impar do TR */
.dsmeta-sales-table tbody tr:nth-child(odd){
background-color: #242C3B;
}
.dsmeta-container {
width: 100%;
max-width: 900px ; /* Largura máxima */
margin: 0 auto; /* Macete para alinhar o grid ao centro */
}
#sales { /* Delimita o espaçamento interno na session */
padding: 40px 10px; /* 40px na vertical e 10px nas laterais */
}
.dsmeta-red-btn-container {
display: flex ;
justify-content: center;
}
.dsmeta-red-btn {
height: 45px;
width: 45px;
background: rgba(255, 107, 114, 0.1);
border: 1px solid #FF6B72;
border-radius: 10px;
display: flex ;
align-items: center;
justify-content: center;
cursor: pointer ;
}
.dsmeta-red-btn img {
width: 19px;
}
.show576 {
display: none;
}
@media (min-width: 576px) {
.show576 {
display: table-cell;
}
.dsmeta-card{
padding: 55px;
}
.dsmeta-sales-table tbody tr{
height: 74px ; /* Altura da linha */
}
.dsmeta-sales-table tbody {
font-size: 18px;
}
}
.show992 {
display: none;
}
@media (min-width: 992px) {
.show992 {
display: table-cell;
}
}