-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (39 loc) · 699 Bytes
/
style.css
File metadata and controls
41 lines (39 loc) · 699 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
*{
margin : 0;
padding : 0;
box-sizing: border-box;
}
body{
width: 100%;
}
.items {
max-width: 500px;
margin: 20px auto;
}
.items h2{
margin: 10px auto;
text-align: center;
margin-bottom: 3rem;
}
.item{
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
background-color: white;
box-shadow: 0px 4px 10px -5px rgba(0, 0, 0, 0.3);
margin-bottom: 2rem;
padding: 1rem;
border-radius: 0.8rem;
}
.item span{
display: inline-block;
width: 50px;
height: 50px;
border-radius: 50%;
display: grid;
place-items: center;
color: white;
font-weight: bold;
font-size: 2rem;
}