-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (44 loc) · 748 Bytes
/
style.css
File metadata and controls
44 lines (44 loc) · 748 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Courier New", Courier, monospace;
}
body {
height: 100vh;
width: 100%;
background-color: #00612f;
display: flex;
align-items: center;
justify-content: center;
}
.container {
height: 12rem;
width: 30rem;
border-radius: 10px;
background-color: white;
gap: 20px;
display: flex;
flex-direction: column;
padding-top: 20px;
align-items: center;
justify-content: flex-start;
}
.container .rating-box {
width: 100%;
display: flex;
padding-left: 50px;
flex-direction: row;
gap: 10px;
}
.container .rating-box svg {
height: 4rem;
}
.container p {
font-size: 18px;
font-weight: bold;
}
svg {
transition: fill 0.2s;
cursor: pointer;
}