-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (52 loc) · 1 KB
/
style.css
File metadata and controls
56 lines (52 loc) · 1 KB
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
body{
background-color: rgb(99, 16, 99);
font-family: Arial;
font-weight: bold;
}
#h1{
color: white;
text-align: center;
}
#container{
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center space-around;
align-items: center;
}
img{
width: 70px;
height: 70px;
border-radius: 35px;
}
#imgcontainer{
margin: auto;
width: 50px;
height: 50px;
border-radius: 25px;
}
.star {
font-size: 40px;
color: gold;
}
.empty-star {
color: lightgray;
}
.people{
width: 300px;
background-color: white;
text-align: center;
border: 2px black solid;
border-radius: 15px;
box-shadow: 10px 10px 5px rgba(55,55,55,0.5);
margin: 20px;
padding: 20px;
cursor: pointer;
transition: transform 0.2s;
}
.people:hover{
background-color: black;
color: white;
transform : scale(1.05);
}