forked from gyanshankar1708/GrowCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.css
More file actions
36 lines (32 loc) · 633 Bytes
/
work.css
File metadata and controls
36 lines (32 loc) · 633 Bytes
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
/* main section */
.section-title {
margin-bottom: 2rem;
}
#readMoreBtn {
background: #1f8321;
transition: all 0.3s ease;
}
.read-more-container{
transition: all 0.3s ease;
}
/* Fade effect for collapse */
.collapse.fade {
opacity: 0;
transition: all 0.4s ease;
}
.collapse.fade.show {
opacity: 1;
}
/* Contributors button style */
.btn-secondary {
background: linear-gradient(90deg, #4CAF50, #2E7D32);
color: #fff;
border-radius: 8px;
padding: 10px 20px;
font-weight: 500;
transition: 0.3s;
}
.btn-secondary:hover {
background: linear-gradient(90deg, #2E7D32, #4CAF50);
transform: scale(1.05);
}