-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·176 lines (174 loc) · 3.46 KB
/
style.css
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
/*
Theme Name: JOJO
Theme URI: https://abigeater.com
Description: Job Offer Manager - This is a show you company job offers wordpress theme. It is a simple and clean theme, with a focus on job offers. It is a great choice for companies that want to showcase their job offers in a professional and easy-to-use way. And you can show some about company news in this website, and have some about in localize features, like submit notify, company inside manage...
Requires at least: 6.0
Version: 1.0
Author: Abigeater
Author URI: https://abigeater.com
*/
.container-fluid > a {
color: unset !important;
text-decoration: none !important;
font-size: 2.5em;
font-weight: bold;
}
.loading{
display: none;
}
.header-logo-img {
height: 60px;
width: 180px;
}
#site-content {
min-height: 60vh;
}
.header {
width: 90%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 auto;
}
.header-nav-wrapper{
display: flex;
}
.current-menu-item > a {
color: var(--bs-link-hover-color);
text-decoration-color: var(--bs-link-hover-color);
}
body{
background: #f5f5f5;
}
a {
color: var(--bs-link-color);
text-decoration-color: var(--bs-link-color);
}
.filter-box {
padding: 40px !important;
border-radius: 1rem;
border: 1px solid #dedfdf;
background: #f1f4f9
}
.job-tag {
color: rgb(78, 78, 78);
}
.job-tag > span::after{
content: "|";
color: rgb(78, 78, 78);
/* width: 1px; */
/* height: 80%; */
/* background-color: gray; */
display: inline-block;
margin: 0 5px;
}
.job-excerpt{
color: gray;
}
.job-side-text{
color: gray;
}
.job-tag > span:last-child::after{
content: "";
display: none;
}
.nav-link a,
.job-item a{
text-decoration: none;
}
.job-list {
padding-left: 0;
}
.card {
--bs-border-radius: 1rem;
/* --bs-border-width: 0; */
}
.card:hover {
background-color: #ececec;
/* border: 4px solid #ececec; */
}
.job-type-icon {
text-align: center;
display: flex;
align-items: center;
}
.job-type-icon > img {
width: 36px;
}
.job-ele {
--bs-gutter-x: 0 !important;
}
.cover {
text-align: center;
display: flex;
align-items: center;
width: 100%;
background-size: cover !important;
background-repeat: no-repeat;
height: 140px;
justify-content: center;
background-size:100% 100%;
}
.cover > h1 {
font-weight: 600;
font-style: normal;
font-size: calc(clamp(0px,(100vw - 400px) /(1200 - 400), 1px)*(100 - 40) + 40px);
}
.loading {
height: 100vh;
width: 100vw;
background-color: gray;
position: fixed;
top: 0;
left: 0;
opacity: 0.5;
z-index: 9999;
display: none;
align-items: center;
justify-content: center;
}
.no-job-tips {
text-align: center;
font-size: 20px;
color: gray;
}
.social-media-item{
position: relative;
}
.social-media-qrcode{
position: absolute;
left: -64px;
top: -160px;
width: 150px;
height: 150px;
display: none;
}
.social-media-item:hover .social-media-qrcode{
display: block;
}
.social-media-item:focus .social-media-qrcode{
display: block;
}
.social-media-tips{
line-height: 26px;
}
.lang-dropdown-menu{
min-width: unset;
}
@keyframes rotate {
0% {
transform: rotate(0);
}
100% {
transform: rotate(720deg);
}
}
@media (min-width: 768px) {
.cover {
height: 500px;
}
.job-list {
padding-left: 2rem;
}
}