-
Notifications
You must be signed in to change notification settings - Fork 756
/
style_PetCards.css
121 lines (98 loc) · 2.54 KB
/
style_PetCards.css
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
113
114
115
116
117
118
119
120
121
/* Light Mode Styles for New Elements */
.bg-light-mode {
background: linear-gradient(180deg, #c0692c 0%, #e2e2e2 100%);
/* background: linear-gradient(135deg, #f9f9f9 0%, #e2e2e2 100%); */
}
.main-card-light {
/* background: linear-gradient(180deg, #b1591a 0%, #e2e2e2 100%); */
background: linear-gradient(135deg, #bcbcbc 0%, #e7e6e6 100%);
box-shadow: 0 4px 8px rgba(178, 94, 25, 0.5);
transition: transform 0.8s, box-shadow 0.8s, background 0.8s;
}
.main-card-light:hover {
transform: translateY(-5px);
background: linear-gradient(180deg, #aa581d 0%, #e2e2e2 100%);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.hover-button-light {
background-color: #aa5519;
color: #ffffff;
transition: background-color 0.8s, color 0.8s, transform 0.3s;
}
.hover-button-light:hover {
background: linear-gradient(135deg, #aa5519 0%, #753a10 100%);
color: #ffffff;
transform: scale(1.05);
}
.text-light-mode {
color: #8b4513;
font-weight: bold;
}
.bg-dark-mode {
background: linear-gradient(180deg, #b27349 0%, #673514 100%);
background-size: cover;
}
.main-card-dark {
background: linear-gradient(180deg, #8d4211 0%, #411b02 100%);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
transition: transform 0.8s, box-shadow 0.8s, background 0.8s;
}
.main-card-dark:hover {
transform: translateY(-5px);
background: linear-gradient(90deg, #411b02 0%, #8d4211 100%);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}
.hover-button-dark {
background: linear-gradient(135deg, #8b8b8b 0%, #e7e6e6 100%);
color: #1e1e1e;
transition: background-color 0.8s, color 0.8s, transform 0.3s;
}
.hover-button-dark:hover {
background: linear-gradient(135deg, #e7e6e6 0%, #747373 100%);
color: #1e1e1e;
transform: scale(1.04);
}
.text-dark-mode {
color: #ffffff;
}
.pet-card-flex {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
.main-card {
border-radius: 10px;
overflow: hidden;
margin: 10px;
transition: background 0.8s;
}
.card-img-size {
width: 100%;
height: auto;
border-bottom: 2px solid #ccc;
}
.main-text {
padding: 20px;
color: inherit;
color: #fff;
}
.hover-button {
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.card-img-size{
width: 320px;
height: 320px;
border-bottom: 2px solid #ccc;
}
@media screen and (max-width: 768px) {
.pet-card-flex{
align-items: center;
}
.main-card {
max-width: 400px;
}
}