-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjobdetails.css
83 lines (82 loc) · 1.5 KB
/
jobdetails.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
*{
font-family: popins;
}
.button {
margin-bottom: 20px;
width: 100px;
position: relative;
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #338573;
border: none;
border-radius: 2px;
cursor: pointer;
overflow: hidden;
transition: transform 0.3s;
}
.button:active {
transform: scale(1.1);
}
/* for griding */
.jobdetails_container{
width: 1000px;
margin: auto ;
display: grid;
grid-template-columns:4fr 2fr ;
grid-template-rows: auto;
gap: 20px;
}
.jobdetails_child1,
.jobdetails_child2,
.jobdetails_child3{
padding: 20px;
border-radius: 1rem;
border: 1px solid #c3c1c1;
background-color: #FFF;
gap: 20px;
margin-bottom: 10px;
}
.jobdetails_child4{
padding: 20px;
border-radius: 1rem;
border: 1px solid #c3c1c1;
background-color: #FFF;
grid-column: 2;
}
.description-content{
display: flex;
}
.section-content {
max-width: 630px;
word-wrap: break-word;
}
h2, h3{
margin: 20px 0 20px 0;
}
li, p {
line-height: 1.5;
}
.row{
justify-content: space-between;
display: flex;
padding: 10px;
}
.pp-left{
display: flex;
align-items: center;
}
.company-info{
margin-left: 10px;
}
.right_column {
position: relative;
}
.jobdetails_child4_sticky_wrapper {
position: sticky;
top: 20px; /* Adjust top distance as needed */
}
.section-content ul {
list-style-type: disc; /* Change to 'disc', 'circle', or 'square' as needed */
margin-left: 20px; /* Adjust margin for indentation */
}