-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (81 loc) · 1.35 KB
/
styles.css
File metadata and controls
81 lines (81 loc) · 1.35 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
body {
font-family: "Roboto", sans-serif;
}
.table {
width: 100%;
border-spacing: 0;
text-align: left;
}
.table th {
font-weight: 300;
font-size: 16px;
color: #fff;
line-height: 26px;
padding: 18px 30px;
}
.table thead tr {
background: #2b2d32;
}
.table td {
padding: 30px 30px 31px;
font-weight: 300;
font-size: 16px;
color: black-2;
line-height: 26px;
text-transform: uppercase;
}
.table tbody tr:nth-child(odd) {
background: $white;
}
.table tbody tr:nth-child(even) {
background: $f8fbfc;
}
.table__wrapper {
padding-top: 40px;
}
.btn {
display: inline-block;
font-weight: 700;
font-size: 15px;
line-height: 25px;
text-transform: uppercase;
width: 170px;
text-align: center;
padding: 10px;
border-radius: 3px;
transition: background 0.3s ease;
text-decoration: none;
}
.btn:hover {
color: $white;
}
.btn__male {
color: #2DE1FC;
border: 2px solid #2DE1FC;
}
.btn__malee:hover {
background: #2DE1FC;
}
.btn__female {
color: #FF0080;
border: 2px solid #FF0080;
}
.btn__female:hover {
background: #FF0080;
}
@media (max-width: 768px) {
.table td {
display: block;
text-align: right;
}
.table td:before {
content: attr(data-label);
float: left;
text-transform: uppercase;
font-weight: bold;
}
.table thead display none tr {
margin-bottom: 30px;
display: block;
}
}