-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (66 loc) · 1012 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
56
57
58
59
60
61
62
63
64
65
66
body{
background-color: #E0E0E0;
text-align:center;
}
.my-flex {
display: flex;
}
.top {
text-align:left;
font-size:16px;
color:#90A4AE;
border-bottom:1px solid #CCCCCC;
}
.bottom {
display: flex;
align-items: center;
justify-content: space-between;
}
.bottom-left, .bottom-right {
display: flex;
}
.bottom-left{
align-items:center;
justify-content: space-between;
}
.bottom-left p {
margin-left: 10px;
font-weight:bold;
}
.bottom-right{
text-align: center;
width:60%;
justify-content: space-between;
}
.icon{
display:flex;
flex-direction: column;
}
.icon i {
font-size: 20px;
color:#37474F;
}
button{
background-color:#26A69A;
padding: 5px;
width: 20%;
height: 30px;
border: none;
color:#ffffff;
border-radius:3px;
align-self: center;
}
.card{
display: flex;
flex-direction: column;
background-color: white;
width:550px;
height: 200px;
margin:0 auto;
justify-content: space-evenly;
padding:20px;
}
img{
height:75px;
width:75px;
}