-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
65 lines (56 loc) · 894 Bytes
/
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
body {
margin-top: 15px;
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
ul {
height: 100%;
margin: 0;
padding-left: 0;
list-style: none;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
li {
margin: 20px;
width: 575px;
height: 100px;
display: flex;
flex-direction: row;
align-items: center;
background-color: rgba(95, 158, 160, 0.459);
border-radius: 4px;
}
img {
margin-left: 35px;
border-radius: 50%;
}
button {
margin-bottom: 8px;
width: 100px;
border: none;
border-radius: 2px;
box-shadow: 0.5px 0.5px 1px;
}
button:hover {
cursor: pointer;
}
div {
margin-left: 20px;
display: flex;
flex-direction: column;
}
p {
font-size: 14.5px;
}
.expandBox {
height: 150px;
justify-content: space-evenly;
}
h2 {
color: rgb(58, 94, 95);
}