-
Notifications
You must be signed in to change notification settings - Fork 0
/
likes.css
78 lines (78 loc) · 1.79 KB
/
likes.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
h2{
text-align: center;
margin:0;
padding-block-start: 2em;
padding-block-end: .5em;
color: black;
}
.body{
background-image: linear-gradient(-45deg,pink,#5ed6b3 );
}
.written-material{
margin-inline: 15%;
padding-block-end: 2em;
}
.written-material p{
text-align: center;
}
.like-buy{
grid-template-rows: auto auto;
row-gap: 2em;
justify-content: space-evenly;
}
.buy-like{
background: linear-gradient(0deg, #9756ff 0%, #E5B2CA 100%);
padding-bottom: 4em;
max-width: 17rem;
border-radius: 20px;
box-shadow: 0px 0px 7.5px 3px rgba(255, 255, 255, 0.733);
}
.buy-like img{
width:50%;
padding-block: 1em;
}
.img-center{
width:100%
}
.buy-like i{
padding-block:0.5em;
font-weight: 900;
color: #49007f;
font-size: 5rem;
padding-inline:1em;
}
h3{
font-family: roboto, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.price{
font-size: 2rem !important;
font-weight: 900 !important;
padding:0 !important;
text-align: center !important;
}
.buy-like li{
font-family: roboto, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 1rem;
text-align: center;
}
.first-section-button{
padding-inline:30%
}
@media screen and (max-width:1250px){
.like-buy{
grid-template-columns: auto auto auto !important;
}
}
@media screen and (max-width:800px){
.like-buy{
grid-template-columns: auto auto !important;
}
}
@media screen and (max-width:550px){
.like-buy{
grid-template-columns: auto !important;
}
.buy-like i{
padding-inline: 8rem !important;
}
}