-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathosayd.css
More file actions
78 lines (67 loc) · 1.25 KB
/
osayd.css
File metadata and controls
78 lines (67 loc) · 1.25 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
:root {
--primary-color: #e50914;
--bg-dark: #141414;
--card-bg: #2f2f2f;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--bg-dark) !important;
}
a {
transition: 0.3s;
}
a:hover {
color: var(--primary-color) !important;
}
.card {
background-color: var(--card-bg);
border: none;
border-radius: 10px;
transition: transform 0.3s ease;
overflow: hidden;
}
.card:hover {
transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.card-title {
font-size: 1.1rem;
font-weight: bold;
}
#search-input:focus {
background-color: #333;
color: white;
border-color: var(--primary-color);
box-shadow: none;
}
.card-img-top {
height: 400px;
object-fit: cover;
object-position: center;
}
#modalImage {
width: 100%;
height: auto;
max-height: 600px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 20px;
}
.modal-dialog {
max-width: 600px;
}
.modal-body {
padding: 0;
}
#modalDescription {
padding: 15px;
font-size: 1.1rem;
line-height: 1.6;
}
.position-relative {
position: relative !important;
}
.card:hover .btn-dark {
background-color: #000 !important;
transform: scale(1.1);
}