-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.css
163 lines (139 loc) · 2.81 KB
/
categories.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#categories-container {
text-align: center;
margin-bottom: 3em;
}
#categories-container h1 {
font-size: 3rem;
}
.categories-item-parent {
padding: 20px 100px;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.categories-item {
position: relative;
width: 150px;
height: 150px;
background-color: #5d52ba;
color: white;
font-weight: 600;
padding: 50px 20px;
border: 10px solid #7f73eb;
border-radius: 50%;
transition: .5s;
}
.categories-item:hover {
border: 10px solid rgb(255, 255, 255);
box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}
.categories-item-children {
background-color: #0dcaf0;
position: absolute;
top: -5%;
right: 0;
border-radius: 100%;
}
.categories-item-children p {
font-weight: 700;
padding: 10px;
}
/* Target job intro */
#target-job-intro {
padding: 0 50px;
display: grid;
grid-template-columns: 1fr 2fr 1fr;
gap: 20px;
margin-bottom: 5em;
}
.target-job-intro-child-one {
position: relative;
}
.target-job-intro-child-one img {
object-fit: cover;
width: 100%;
height: 100%;
border-radius: 10px 0 0 10px;
}
.intro-one-text {
text-align: center;
background-color: rgb(135, 85, 182);
padding: 5px 10px;
margin: 0;
border-top: 20px solid rgb(34, 196, 196);
border-radius: 5px 5px 0 0;
position: absolute;
bottom: 0;
left: 5%;
right: 5%;
color: white;
}
.intro-one-text h1 {
font-size: 1.1rem;
}
.target-job-intro-child-two {
background-color: rgb(0, 183, 255);
padding: 50px 50px 90px;
}
.target-job-intro-child-two h1 {
font-size: 2.5rem;
color: white;
margin-bottom: 10px;
}
.target-job-intro-child-two p {
font-size: 1.5rem;
color: white;
margin-bottom: 10px;
margin-bottom: 40px;
}
.target-job-intro-child-two p a {
text-decoration: none;
color: #5a5394;
font-size: .8rem;
}
.intro-link a {
font-size: 1.1rem;
border: 2px solid white;
border-radius: 30px;
text-decoration: none;
padding: 10px 20px;
margin-right: 20px;
color: white;
transition: background-color .7s;
}
.intro-link a:hover {
background-color: white;
color: rgb(127, 127, 253);
}
.target-job-intro-child-three {
position: relative;
}
.target-job-intro-child-three img {
object-fit: cover;
width: 100%;
height: 100%;
border-radius: 0 10px 10px 0;
}
.intro-three-text {
background-color: rgb(255, 87, 87);
color: white;
text-align: center;
font-size: 1.1rem;
padding: 5px 20px;
border-radius: 40px;
position: absolute;
left: 5%;
right: 5%;
bottom: 10px;
}
.intro-three-text a {
text-decoration: none;
color: white;
font-weight: 700;
}