-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (95 loc) · 1.9 KB
/
style.css
File metadata and controls
110 lines (95 loc) · 1.9 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #32312f;
font-family: sans-serif;
}
.table-container {
padding: 0 10%;
margin: 40px auto 0;
}
.cabecalho {
font-size: 40px;
text-align: center;
color: #f1f1f1;
margin-bottom: 40px;
}
.table {
width: 100%;
border-collapse: collapse;
/* text-align: center; */
}
.table thead {
background-color: #ee2828;
}
.table thead tr th {
font-size: 14px;
font-weight: 600;
letter-spacing: 0.35px;
color: #ffffff;
opacity: 1;
padding: 12px;
vertical-align: top;
border: 1px solid #dee2e685;
}
.table tbody tr td {
font-size: 14px;
letter-spacing: 0.35px;
font-weight: normal;
color: #f1f1f1f1;
background-color: #3c3f44;
padding: 8px;
text-align: center;
border: 1px solid #dee2e685;
}
.table .text-open {
font-size: 14px;
font-weight: bold;
letter-spacing: 0.35px;
color: #ff1046;
}
.table tbody tr td .btn {
width: 130px;
text-decoration: none;
line-height: 35px;
display: inline-block;
background-color: #ff1046;
font-weight: medium;
color: #ffffff;
text-align: center;
vertical-align: middle;
user-select: none;
border: 1px solid transparent;
font-size: 14px;
opacity: 1;
}
@media (max-width: 768px){
.table thead {
display: none;
}
.table, .table tbody, .table tr, .table td {
display: block;
width: 100%;
}
.table tr {
margin-bottom: 15px
}
.table tbody tr td {
text-align: right;
padding-left: 50%;
position: relative;
}
.table td::before {
content: attr(table-label);
position: absolute;
left: 0;
width: 50%;
padding-left: 15px;
font-weight: 600;
font-size: 14px;
text-align: left;
}
}