-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
70 lines (61 loc) · 1.18 KB
/
styles.scss
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
height: 100%;
width: 100%;
background-color: hsl(30, 38%, 92%);
overflow: hidden;
user-select: none;
}
.page {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.card {
display: flex;
height: 40em;
color: aqua;
border-radius: 15px;
overflow: hidden;
}
.product-image {
height: 100%;
width: 100%;
background: url("./images/image-product-desktop.jpg") center no-repeat;
background-size: contain;
// transform: scale(1.25);
}
.product-details {
display: flex;
flex-direction: column;
background-color: hsl(0, 0%, 100%);
padding: 32px;
}
.perfume {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
color: hsl(228, 12%, 48%);
letter-spacing: 5px;
}
.product-title {
font-family: "Fraunces", serif;
color: hsl(212deg, 21%, 14%);
font-size: 45px;
padding-top: 20px;
padding-right: 60px;
}
.product-description {
padding-top: 20px;
color: hsl(228, 12%, 48%);
font-family: 'Montserrat', sans-serif;
font-size: 14px;
}