-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (90 loc) · 1.59 KB
/
styles.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
#myVideo {
width: 100%;
}
body {
margin: 0%;
background-color: #fbeee0;
}
.header {
display: flex;
justify-content: center;
}
.heading {
color: #d55b3d;
font-family: "Montserrat", sans-serif;
font-size: 60px;
}
.images-section {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.heading-h2 {
color: #d55b3d;
font-family: "Montserrat", sans-serif;
font-size: 40px;
}
.picture {
margin: 40px;
}
.wrapper {
display: flex;
justify-content: center;
}
.item {
background-color: #ffbdb0;
width: 350px;
height: 580px;
display: flex;
flex-direction: column;
align-items: center;
margin: 20px;
}
.item-name {
color: #d55b3d;
font-family: "Montserrat", sans-serif;
}
ul {
background-color: #fbeee0;
color: #7c7575;
border-radius: 5px;
margin-right: 20px;
margin-left: 20px;
}
del {
font-size: 20px;
color: #526163;
font-family: "Montserrat", sans-serif;
padding: 10px;
}
ins {
display: inline-block;
transform: rotate(-7deg);
font-size: 20px;
font-family: "Montserrat", sans-serif;
color: #526163;
text-decoration: none;
}
.price {
font-size: 20px;
color: #526163;
font-family: "Montserrat", sans-serif;
}
@media all and (max-width: 800px) {
.wrapper{
display: flex;
flex-direction: column;
align-items: center;
}
img{
width: 90%;
}
.header{
display: flex;
flex-direction: column;
align-items: center;
}
.heading-h2, .heading{
font-size: 15px;
}
}