-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (44 loc) · 843 Bytes
/
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
*{
padding: 0;
box-sizing: border-box;
margin: 0;
}
body{
background-color: blanchedalmond;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
.container{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.card{
padding: 18px;
background: rgb(233, 111, 23);
border-radius: 10px;
max-width: 30rem;
width: 100%;
margin: 0 16px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.star{
font-size:10vh;
cursor: pointer;
}
.one{
color: rgb(255, 0, 0);
}
.two {
color: rgb(255, 106, 0);
}
.three {
color: rgb(255, 255, 120);
}
.four {
color: rgb(255, 255, 0);
}
.five {
color: rgb(24, 159, 14);
}