-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (73 loc) · 1.29 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (73 loc) · 1.29 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* Dark Mode Base */
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background-color: #121212;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
box-sizing: border-box;
}
/* Section Container */
.container {
max-width: 1200px;
width: 100%;
}
/* Section Title */
.section-title {
text-align: center;
font-size: 2.8rem;
margin-bottom: 40px;
color: #00d8ff;
}
/* Cards Container */
.cards {
display: flex;
justify-content: center;
gap: 2.5rem;
flex-wrap: wrap;
padding: 10px;
}
/* Individual Card */
.card {
background-color: #1e1e1e;
border-radius: 16px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
overflow: hidden;
text-align: center;
width: 360px;
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-12px);
}
/* Image */
.card img {
width: 100%;
height: 220px;
object-fit: cover;
}
/* Title */
.card h2 {
margin: 20px 0 10px;
font-size: 1.8rem;
color: #ffffff;
}
/* Button */
.card a {
display: inline-block;
margin-bottom: 20px;
padding: 12px 24px;
background-color: #00d8ff;
color: #121212;
text-decoration: none;
border-radius: 10px;
font-weight: bold;
transition: background-color 0.2s;
}
.card a:hover {
background-color: #00a8cc;
}