-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathresume-list-styles.css
More file actions
108 lines (87 loc) · 1.83 KB
/
resume-list-styles.css
File metadata and controls
108 lines (87 loc) · 1.83 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
table {
width: 100%;
border-spacing: 0;
text-align: center;
box-shadow: 0 0 50px var(--table-shadow-color);
}
.table-wrapper {
height: 100%;
min-width: 610px;
width: 50%;
margin: 0 0 0 25%;
display: block;
}
.add-resume {
height: 100px;
width: 100%;
display: inline-flex;
align-items: center;
justify-content: end;
}
.add-resume-title {
font-family: Roboto, serif;
font-style: normal;
font-weight: bold;
font-size: 15px;
width: 70px;
margin-left: 13px;
display: block;
color: var(--add-resume-text-color);
}
.resumes-list {
width: 100%;
}
.resumes-list img {
height: 20px;
}
.t-header, tr {
font-family: Roboto, serif;
font-style: normal;
font-weight: bold;
font-size: 16px;
line-height: 19px;
height: 70px;
color: var(--table-header-text-color);
background: var(--table-header-background);
}
.t-body, tr {
font-family: Open Sans, serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 19px;
color: var(--table-text-color);
}
.t-body, tr:nth-child(odd) {
height: 70px;
background: var(--table-odd-row-background);
}
.t-body, tr:nth-child(even) {
height: 90px;
background: var(--table-even-row-background);
}
.resumes-list th:first-of-type {
border-top-left-radius: 10px;
}
.resumes-list th:last-of-type {
border-top-right-radius: 10px;
}
.resumes-list tr:last-of-type td:first-of-type {
border-bottom-left-radius: 10px;
}
.resumes-list tr:last-of-type td:last-of-type {
border-bottom-right-radius: 10px;
}
.name-column {
text-align: start;
padding: 0 0 0 38px;
}
.info-column {
text-align: start;
width: 230px !important;
min-width: 180px !important;
}
.img-column {
width: 110px !important;
min-width: 110px !important;
}