-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
58 lines (48 loc) · 860 Bytes
/
styles.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
/* Global Styles */
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f7fc;
}
header {
padding: 80px 0;
color: white;
}
h1, h2 {
font-weight: 600;
}
h5 {
font-weight: 500;
}
footer {
background-color: #333;
color: white;
}
.card-img-top {
height: 200px;
object-fit: cover;
border-radius: 8px;
}
/* Tab styling */
.nav-tabs .nav-link {
border-radius: 0;
color: #28a745;
}
.nav-tabs .nav-link.active {
background-color: #28a745;
color: white;
}
/* Container Padding for a neat look */
.container {
padding: 0 15px;
}
/* Card Shadow and Hover Effect */
.card {
border-radius: 12px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}