-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (52 loc) · 896 Bytes
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin-top: 20px;
font-family: papyrus;
display: flex;
align-items: center;
justify-content: space-around;
background-image: url("sprites/sand.jpeg");
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
background-color: brown;
max-width: 300px;
margin: auto;
text-align: center;
font-family: papyrus;
}
.price {
color: whitesmoke;
font-size: 22px;
margin-bottom: 25px;
margin-left: 10px;
text-align: center;
}
.danger {
color: yellow;
font-size: 20px;
margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}
.card button {
border: none;
outline: 0;
padding: 12px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
.card button:hover {
opacity: 0.7;
}
.rotate90 {
transform: rotate(-90deg);
}