-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
100 lines (85 loc) · 1.39 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
@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@400;700&display=swap');
body
{
font-family: 'Overpass', sans-serif;
background-color: hsl(216, 12%, 8%);
}
.card
{
background-color: hsl(213, 19%, 18%);
padding: 15px;
border-radius: 25px;
height: 360px;
}
h5
{
font-weight: 700;
color: hsl(0, 0%, 100%);
font-size: 30px;
}
p
{
font-size: 15px;
}
p, .rating-buttons
{
color: hsl(216, 12%, 54%);
}
.rating-buttons
{
border: none;
border-radius: 50px;
background-color: hsla(217, 12%, 63%, 20%);
width: 60px;
height: 60px;
font-weight: 700;
}
.rating-buttons:hover
{
background-color: hsl(217, 12%, 63%);
color: white;
}
.btn
{
background-color: hsl(25, 97%, 53%);
width: 100%;
color: white;
text-transform: uppercase;
border-radius: 50px;
font-weight: 700;
}
.btn:hover
{
background-color: white;
color: hsl(25, 97%, 53%);
}
#star-icon
{
padding: 15px;
background-color: hsla(217, 12%, 63%, 10%);
border-radius: 50px;
margin-bottom: 30px;
}
.rating-result
{
color: hsl(25, 97%, 53%);
background-color: hsla(217, 12%, 63%, 10%);
width: 200px;
border-radius: 50px;
padding: 6px;
margin: 30px 0px 30px 0px;
}
table
{
margin: 0px;
text-align: center;
height: 10px;
}
tbody
{
height: 50px;
}
#submitted-state
{
display: none;
}