-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathstyles.module.css
More file actions
45 lines (39 loc) · 881 Bytes
/
styles.module.css
File metadata and controls
45 lines (39 loc) · 881 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
37
38
39
40
41
42
43
44
45
.container {
display: block;
border-radius: var(--ifm-global-radius);
padding: 1rem;
color: #fff;
background-size: cover;
background-position: center;
text-decoration: none;
opacity: 0.92;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.container:hover {
opacity: 1;
transform: translateY(-3px);
text-decoration: none;
color: #fff;
}
/* === Gradient Backgrounds (CodeHarborHub Theme) === */
.backgroundIntro {
background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
}
.backgroundCourses {
background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}
.backgroundCommunity {
background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}
/* Text Styles */
.tagline {
font-size: 0.8rem;
margin-bottom: 0;
line-height: 1.4;
}
.title {
display: block;
font-weight: 700;
font-size: 0.9rem;
margin-bottom: 0.3rem;
}