-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathapp.css
63 lines (58 loc) · 1.32 KB
/
app.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
/* 🚨🚫🙅 START OF THE NO TOUCHING ZONE 🙅🚫🚨 */
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #263238;
}
h1 {
text-align: center;
color: white;
font-weight: 100;
}
.card {
position: relative;
height: 16.5em;
box-shadow: 0px 1px 13px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 120ms;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
padding: 0.5em;
padding-bottom: 3.4em;
margin: 0 5px;
}
.card .title {
font-family: Arial, Helvetica, sans-serif;
font-size: 0.9em;
position: absolute;
left: 0.625em;
bottom: 1.875em;
font-weight: 400;
color: #000;
}
.card .price {
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
font-size: 0.9em;
position: absolute;
left: 0.625em;
bottom: 0.625em;
color: #000;
}
.image {
background: rgb(241, 241, 241);
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
/* 🚨🚫🙅 END OF THE NO TOUCHING ZONE 🙅🚫🚨 */
/* ALL YOUR CODE GOES BELOW THIS LINE */
/* ================================== */
#container {
margin: 0 auto;
width: 900px;
/* ⬇️⬇️⬇️ STYLE THE GRID CONTAINER HERE ⬇️⬇️⬇️ */
/* ⬆️⬆️⬆️ STYLE THE GRID CONTAINER HERE ⬆️⬆️⬆️ */
}