-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (75 loc) · 1.44 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
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
*{
box-sizing: border-box;
}
body{
background-color: #fef9f2;
font-family: 'Montserrat', sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
.panel-container{
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
border-radius: 4px;
font-size: 90%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px;
max-width: 400px;
text-align: center;
}
.panel-container strong {
line-height: 20px;
}
.ratings-container{
display: flex;
margin: 20px 0;
}
.rating{
flex: 1;
cursor: pointer;
padding: 20px;
margin: 10px 5px;
}
.rating:hover, .rating.active{
border-radius: 4px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.rating img{
width: 45px;
}
.rating small{
color: #555;
display: inline-block;
margin: 10px 0 0;
}
.rating:hover small ,
.rating.active small {
color: #111;
}
.btn {
background-color: #302d2b;
color: #fff;
border: 0;
border-radius: 4px;
padding: 12px 30px;
cursor: pointer;
}
.btn:focus{
outline: 0;
}
.btn:active{
transform: scale(0.98);
}
.fa-heart{
color: red;
font-size: 30px;
margin-bottom: 10px;
}