-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
111 lines (94 loc) · 1.96 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@700&family=Montserrat:wght@500;700&display=swap');
* {
padding: 0px;
}
body {
align-items: center;
background-color: hsl(30, 38%, 92%);
display: flex;
justify-content: center;
height: 100%;
min-height: 100vh;
overflow: hidden;
width: 100%;
}
.container {
box-shadow: 0 10px 40px hsl(220, 15%, 55%);
background-color: hsl(0, 0%, 100%);
display: flex;
flex-direction: row;
border-radius: 20px;
width: 600px;
}
.img {
flex: 1 0 50%;
object-fit: cover;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}
.head {
text-transform: uppercase;
letter-spacing: 4px;
flex-direction: row;
font-family: 'Montserrat', sans-serif;
color: hsl(228, 12%, 48%);
overflow: hidden;
}
.desc {
padding: 35px;
}
.para {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
color: hsl(228, 12%, 48%);
margin: 0px;
}
h1 {
font-size: 2rem;
font-family: 'Fraunces', serif;
color: hsl(212, 21%, 14%);
}
.prices {
display: flex;
align-items: center;
margin-top: 25px;
margin-bottom: 25px;
}
.real {
color: hsl(158, 36%, 37%);
font-size: 1.7rem;
margin-right: 20px;
font-family: 'Fraunces', serif;
}
.cut {
text-decoration: line-through;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
color: hsl(228, 12%, 48%);
}
button {
background-color: hsl(158, 36%, 37%);
color: hsl(0, 0%, 100%);
display: flex;
justify-content: center;
align-items: center;
font-family: "Montserrat", sans-serif;
font-weight: 700;
background-color: hsl(158, 36%, 37%);
color: hsl(0, 0%, 100%);
padding: 20px;
border-style: none;
border-radius: 10px;
height: 50px;
width: 100%;
}
.svg {
margin-right: 10px;
}
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}