-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathcareers.module.css
More file actions
107 lines (94 loc) · 2.07 KB
/
Copy pathcareers.module.css
File metadata and controls
107 lines (94 loc) · 2.07 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
.group_photo_container {
margin-top: var(--ifm-spacing-2xl);
padding: 0;
}
.picture_container {
position: relative;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.interview_picture {
width: 100%;
height: auto;
}
.play_interview {
height: 60px;
width: 60px;
position: absolute;
top: 70%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}
.interview_card {
width: 280px;
height: 300px;
background-color: var(--ifm-bg-neutral);
border-radius: 10px;
box-shadow: var(--ifm-shadow-card);
padding: var(--ifm-spacing-sm);
text-align: center;
margin-bottom: var(--ifm-spacing-xl);
}
.interview_picture {
width: 284px;
}
.interviews_container {
margin: var(--ifm-spacing-2xl) 0;
}
.interview_name {
color: var(--ifm-text-color);
text-align: center;
font-family: var(--ifm-font-family-roboto);
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: 128.571%;
margin-top: var(--ifm-spacing-lg);
}
.interview_position {
color: var(--ifm-text-color);
text-align: center;
font-family: var(--ifm-font-family-roboto);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 133.333%;
letter-spacing: 0.5px;
}
.link_to_WTJ {
background-color: var(--ifm-bg-emphasis);
color: white;
font-weight: 700;
}
@media only screen and (max-width: 996px) {
.join_the_team_text {
text-align: center;
font-size: 18px;
font-family: var(--ifm-font-family-roboto);
color: var(--ifm-color-primary-p2);
font-style: normal;
font-weight: 400;
line-height: 36px;
}
.join_the_team_container {
margin-top: var(--ifm-spacing-xl);
}
}
@media only screen and (min-width: 996px) {
.join_the_team_text {
text-align: center;
font-size: 28px;
font-family: var(--ifm-font-family-roboto);
color: var(--ifm-color-primary-p2);
font-style: normal;
font-weight: 400;
line-height: 36px;
margin-bottom: var(--ifm-spacing-3xl);
}
.join_the_team_container {
margin-top: var(--ifm-spacing-5xl);
}
}