-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (54 loc) · 1.01 KB
/
style.css
File metadata and controls
65 lines (54 loc) · 1.01 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
@import url("https://fonts.googleapis.com/css?family=Roboto");
body {
font-family: "Roboto", sans-serif;
}
h1 {
color:#4181ee;
display: flex;
justify-content: center;
}
.container {
display: flex;
justify-content: center;
}
.wrapper {
display: flex;
flex-wrap: wrap;
}
.card {
max-width: 300px;
min-height: 250px;
background-color: aquamarine;
box-sizing: border-box;
color:#fff;
padding: 30px;
border-radius: 3px;
margin:20px;
box-shadow: rgb(50 50 93 / 25%) 0px 30px 60px -12px,
rgb(0 0 0 / 30%) 0px 18px 36px -18px;
}
.card_image img {
width: 100%;
}
.card:nth-child(2) {
background-color: #4181ee;
}
.card:last-child{
background-color: #673ab7;
}
.card_info {
display: flex;
justify-content: space-between;
align-items: center;
}
.card_price {
background-color: #555;
color:#fff;
border:none;
border-radius: 20px;
padding: 5px 20px;
cursor: pointer;
}
.card:hover {
transform: translateY(-8px);
}