-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
53 lines (45 loc) · 884 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');
* {
box-sizing: border-box;
}
body {
font-family: "Poppins", sans-serif;
margin: 0;
}
#value-usd,
#value-eur {
margin-right: 30px;
}
.icon {
display: flex;
width: 30%;
height: 100%;
align-items: center;
}
.icon img {
height: 90%;
width: 10%;
}
.text {
margin-right: 10px;
}
.value {
display: flex;
flex-direction: row;
justify-content: space-between;
}
#value {
padding-right: 5%;
}
#bitcoin {
display: flex;
flex-direction: row;
justify-content: space-between;
background-color: #0D579B;
color: #F7931A;
box-shadow: 0 0 10px 5px rgba(100, 100, 100, 0.1);
overflow: hidden;
max-width: 100%;
padding-right: 5%;
padding-left: 5%;
}