-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhelp.css
More file actions
68 lines (58 loc) · 1.13 KB
/
Copy pathhelp.css
File metadata and controls
68 lines (58 loc) · 1.13 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
.help-section {
text-align: center;
padding: 80px 20px;
}
.help-section h1 {
font-size: 3.5rem;
margin-bottom: 10px;
}
.help-section p {
color: #666;
font-size: 1.2rem;
}
.help-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
max-width: 1000px;
margin: 30px auto;
padding: 0 20px;
}
.card {
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: scale(1.03);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.card img {
width: auto;
height: 150px;
}
.card h3 {
margin: 15px 0 10px;
font-size: 1.5rem;
}
.card p {
color: #555;
font-size: 1rem;
}
.card a {
display: inline-block;
margin-top: 10px;
padding: 10px 20px;
background: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s ease, transform 0.3s ease;
}
.card a:hover {
transform: scale(1.05);
background: #0056b3;
}