-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCategories.css
More file actions
63 lines (53 loc) · 1.11 KB
/
Categories.css
File metadata and controls
63 lines (53 loc) · 1.11 KB
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
/* Categories Page Styling */
.categories-container {
text-align: center;
padding: 40px;
background-color: #f4f8f3;
min-height: 100vh;
}
.categories-header {
font-size: 28px;
font-weight: bold;
margin-bottom: 20px;
}
.categories-grid {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.category-card {
background: white;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
width: 280px;
text-align: center;
transition: transform 0.3s ease-in-out;
}
.category-card:hover {
transform: scale(1.05);
}
.category-title {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
}
.category-description {
font-size: 14px;
color: #555;
margin-bottom: 15px;
}
.category-btn {
display: inline-block;
padding: 10px 15px;
background-color: #5cb85c;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background 0.3s;
}
.category-btn:hover {
background-color: #4cae4c;
}