-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
62 lines (62 loc) · 994 Bytes
/
main.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
*{
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
}
.search-btn {
text-decoration: none;
font-weight: 700;
color: purple;
}
.fab {
font-size: 36px;
}
.fa-bitcoin {
color: goldenrod;
}
.fa-ethereum {
color: darkslateblue;
}
.card {
width: 400px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
gap: 20px;
padding-top: 40px;
padding-bottom: 40px;
}
.btc{
display:flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
}
#coin {
border: none;
width: 75px;
padding-right: 10px;
}
#coin:focus {
outline: none;
}
.search-field {
border: 1px solid black;
padding: 5px 5px;
border-radius: 10px;
}
img {
width: 50px;
height: 50px;
}
.price-display {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.price{
font-size: 20px;
font-weight: 500;
}