-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (102 loc) · 2.27 KB
/
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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body {
font-family: 'Montserrat', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Fraunces', serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Roboto', sans-serif;
margin: 0;
background-color: hsl(30, 38%, 92%);
display:flex;
flex-direction:column;
justify-content:center;
}
main {
background-color: hsl(0, 0%, 100%);
display: flex;
height: 500px;
width: 660px;
border-radius: 12px;
margin: auto;
margin-top: 80px;
}
main .left_image img {
border-radius: 12px 0 0 12px;
height: 500px;
width: auto;
}
main h3 {
letter-spacing: 0.4em;
font-family: Montserrat;
font-weight: 500;
color: hsl(228, 12%, 48%);
padding: 28px 0 0px 28px;
font-size: 14px;
margin: 0;
}
main h1 {
margin: 0;
padding: 20px 28px 4px 28px;
font-size: 38px;
font-family: Fraunces;
font-weight: 700;
line-height: 1em;
color: hsl(212, 21%, 14%);
}
main p {
margin: 0;
padding: 20px 28px 4px 28px;
font-size: 16px;
font-family: Montserrat;
font-weight: 500;
color: hsl(228, 12%, 48%);
line-height: 1.5em;
}
main div.prices {
padding: 20px 28px 4px 28px;
display: flex;
align-items: center;
}
main div.prices .priceAfter {
font-family: Fraunces;
color: hsl(158, 36%, 37%);
font-size: 34px;
padding-right: 18px;
}
main div.prices .priceBefore{
text-decoration:line-through;
font-family: Montserrat;
font-size: 14px;
color: hsl(228, 12%, 48%);
}
main .btn {
display: flex;
justify-content: center;
align-items: center;
width: 326.67px;
height: 30px;
margin-top: 50px;
}
main .btn button {
display: flex;
justify-content: center;
align-items: center;
font-family: montserrat;
font-weight: 700;
width: 270.67px;
height: 50px;
background-color: hsl(158, 36%, 37%);
border: none;
border-radius: 8px;
color: #fff;
font-size: 16px;
gap: 10px;
cursor: pointer;
}
main .btn button i {
font-weight: 700;
}
main .btn button:hover {
background-color: hsl(158, 100%, 16%);
}
@media (max-width: 375px) {
}