-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (98 loc) · 1.99 KB
/
style.css
File metadata and controls
112 lines (98 loc) · 1.99 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
font-family: Arial, sans-serif;
background-color: #1e1e1e;
color: white;
margin: 0;
padding: 0;
}
.search-bar {
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0;
}
.search-bar input {
width: 300px;
padding: 10px;
border: 2px solid #ff0000;
border-radius: 4px;
outline: none;
font-size: 16px;
}
h1 {
text-align: center;
padding: 20px 0;
}
.card-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
.card {
background-color: #292929;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
width: 220px;
text-align: center;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
padding: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: scale(1.1);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.card img {
width: 100%;
height: auto;
max-height: 200px;
object-fit: contain;
border-radius: 8px;
}
.card h2 {
font-size: 18px;
margin: 10px 0;
}
.card p {
margin: 5px 0;
font-size: 14px;
}
.pagination {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
gap: 10px;
}
.pagination button {
background: linear-gradient(135deg, #FF9800, #F44336);
color: white;
font-size: 16px;
font-weight: bold;
padding: 10px 25px;
border: none;
border-radius: 25px;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.pagination button:hover {
background: linear-gradient(135deg, #F44336, #FF9800);
transform: scale(1.05);
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}
.pagination button:disabled {
background: #CCCCCC;
cursor: not-allowed;
box-shadow: none;
transform: none;
}
.pagination button:disabled:hover {
transform: none;
}