-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (39 loc) · 687 Bytes
/
style.css
File metadata and controls
46 lines (39 loc) · 687 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
46
body{
font-family: Arial, sans-serif;
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
text-align: center;
}
h1{
margin: 20px;
font-size: 2rem;
color: #feda4a;
}
.card-container{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 20px;
}
.card{
background-color: #1c1c1c;
border: 1px solid #444;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
transition: transform 0.2;
}
.card:hover{
transform: scale(1.05);
}
.card h2{
margin: 0 0 10px;
}
.card p {
margin: 5px 0;
font-size: 1rem;
}
.card strong{
color: #feda4a;
}