-
Notifications
You must be signed in to change notification settings - Fork 0
/
c_slide.css
204 lines (176 loc) · 3.59 KB
/
c_slide.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/* /=============== GOOGLE FONTS ===============/ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
/* /=============== VARIABLES CSS ===============/ */
:root {
/* /========== Colors ==========/ */
/* /Color mode HSL(hue, saturation, lightness)/ */
--first-color: hsl(82, 60%, 28%);
--title-color: hsl(0, 0%, 15%);
--text-color: hsl(0, 0%, 35%);
--body-color: hsl(0, 0%, 95%);
--container-color: hsl(0, 0%, 100%);
/* /========== Font and typography ==========/ */
/* /.5rem = 8px | 1rem = 16px .../ */
--body-font: "Poppins", sans-serif;
--h2-font-size: 1.25rem;
--small-font-size: .813rem;
}
/* /========== Responsive typography ==========/ */
@media screen and (min-width: 1120px) {
:root {
--h2-font-size: 1.5rem;
--small-font-size: .875rem;
}
}
/* /=============== BASE ===============/ */
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
font-family: var(--body-font);
background-color: var(--body-color);
color: var(--text-color);
}
img {
display: block;
max-width: 100%;
height: auto;
}
/* /=============== CARD ===============/ */
.container2 {
display: grid;
place-items: center;
margin-inline: 1.5rem;
padding-block: 5rem;
}
.card__container {
display: grid;
row-gap: 3.5rem;
}
.card__article {
position: relative;
overflow: hidden;
}
.card__img {
width: 328px;
border-radius: 1.5rem;
}
.card__data {
width: 280px;
background-color: var(--container-color);
padding: 1.5rem 2rem;
box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
border-radius: 1rem;
position: absolute;
bottom: -9rem;
left: 0;
right: 0;
margin-inline: auto;
opacity: 0;
transition: opacity 1s 1s;
}
.card__description {
display: block;
font-size: var(--small-font-size);
margin-bottom: .25rem;
}
.card__title {
font-size: var(--h2-font-size);
font-weight: 500;
color: var(--title-color);
margin-bottom: .75rem;
}
.card__button {
text-decoration: none;
font-size: var(--small-font-size);
font-weight: 500;
color: var(--first-color);
}
.card__button:hover {
text-decoration: underline;
}
/* Naming animations in hover */
.card__article:hover .card__data {
animation: show-data 1s forwards;
opacity: 1;
transition: opacity .3s;
}
.card__article:hover {
animation: remove-overflow 2s forwards;
}
.card__article:not(:hover) {
animation: show-overflow 2s forwards;
}
.card__article:not(:hover) .card__data {
animation: remove-data 1s forwards;
}
/* Card animation */
@keyframes show-data {
50% {
transform: translateY(-10rem);
}
100% {
transform: translateY(-7rem);
}
}
@keyframes remove-overflow {
to {
overflow: initial;
}
}
@keyframes remove-data {
0% {
transform: translateY(-7rem);
}
50% {
transform: translateY(-10rem);
}
100% {
transform: translateY(.5rem);
}
}
@keyframes show-overflow {
0% {
overflow: initial;
pointer-events: none;
}
50% {
overflow: hidden;
}
}
/* /=============== BREAKPOINTS ===============/ */
/* For small devices */
@media screen and (max-width: 340px) {
.container2 {
margin-inline: 1rem;
}
.card__data {
width: 250px;
padding: 1rem;
}
}
/* For medium devices */
@media screen and (min-width: 768px) {
.card__container {
grid-template-columns: repeat(2, 1fr);
column-gap: 1.5rem;
}
}
/* For large devices */
@media screen and (min-width: 1120px) {
.container2 {
height: 100vh;
}
.card__container {
grid-template-columns: repeat(3, 1fr);
}
.card__img {
width: 348px;
}
.card__data {
width: 316px;
padding-inline: 2.5rem;
}
}