-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
117 lines (106 loc) · 2.07 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
112
113
114
115
116
117
@import url("https://cdn.jsdelivr.net/gh/jgthms/minireset.css@master/minireset.min.css");
body {
background-color: hsl(216, 12%, 8%);
color: white;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
font-family: "Overpass", sans-serif;
font-weight: 500;
font-size: 13px;
}
.osef {
display: none;
}
.card {
height: 350px;
width: 350px;
background-color: hsla(213, 19%, 18%, 0.5);
border-radius: 30px;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 30px;
}
.rates {
display: flex;
justify-content: space-around;
}
.rates button {
background-color: hsla(216, 12%, 54%, 0.15);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: hsl(217, 12%, 63%);
border: none;
}
.rates button:focus {
background-color: hsl(217, 12%, 63%);
color: white;
}
.rates button:hover {
transition: background-color 600ms;
background-color: hsl(25, 97%, 53%);
color: white;
cursor: pointer;
}
button {
background-color: hsl(25, 97%, 53%);
padding: 10px;
border-radius: 80px;
letter-spacing: 0.1rem;
color: white;
}
button:hover {
background-color: white;
transition: backgroun-color 600ms;
color: hsl(25, 97%, 53%);
cursor: pointer;
}
.svg {
background-color: hsla(216, 12%, 54%, 0.15);
width: 40px;
height: 40px;
border-radius: 50%;
background-image: url(images/icon-star.svg);
background-position: center;
background-repeat: no-repeat;
}
h1,
h2 {
font-size: 20px;
font-weight: 700;
}
p {
line-height: 1.5;
color: hsl(217, 12%, 63%);
}
img {
height: 100px;
width: 100%;
-o-object-fit: contain;
object-fit: contain;
}
.flexCenter {
text-align: center;
padding-bottom: 40px;
}
.outOf5 {
background-color: hsla(216, 12%, 54%, 0.15);
padding: 4px;
margin: 0 60px;
border-radius: 50px;
color: hsl(25, 97%, 53%);
opacity: 0.7;
}
@media screen and (max-width: 375px) {
.card {
height: 400px;
width: 100%;
}
}/*# sourceMappingURL=styles.css.map */