-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (71 loc) · 1.51 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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');
body {
background-color: hsl(217, 54%, 11%);
font-family: 'Outfit', sans-serif;
font-size: 18px;
color: white;
}
.card {
background-color: hsl(216, 50%, 16%);
width: 330px;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
padding: 60px 24px 60px 24px;
border-radius: 13px;
}
.image {
padding: 15px;
border: deeppink;
}
.mainImag {
width: 300px;
border: deeppink;
border-radius: 13px;
}
h1 {
color: white;
font-size: 18px;
padding: 15px;
}
.description {
font-size: 14px;
text-align: left;
color: hsl(215, 51%, 70%);
padding: 15px;
}
.price-days {
display: flex;
justify-content: space-between;
padding: 15px;
font-size: 16px;
}
.price {
color: hsl(178, 100%, 50%);
}
.days {
color: hsl(215, 51%, 70%);
}
.creator {
margin: auto;
width: 278px;
padding: 16px;
border-top-style: solid;
border-color: hsl(215, 51%, 70%);
border-width: thin;
display: flex;
align-items: center;
align-content: center;
font-size: 12px;
}
.avatar {
width: 31px;
height: 31px;
}
/* media queries - responsive design */
@media (min-width: 23.438rem) {
}
@media (min-width: 90rem) {
}