-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
52 lines (44 loc) · 871 Bytes
/
App.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
background-color: #1a1a1c;
color: #fff;
}
.coin-app {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 64px;
color: #fff;
}
.coin-search {
margin-bottom: 64px;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
}
.coin-text {
margin-bottom: 32px;
text-align: center;
}
.coin-input {
padding-left: 16px;
width: 300px;
height: 50px;
border-radius: 4px;
border: none;
background-image: linear-gradient(
-225deg,
#ac32e4 0%,
#7918f2 48%,
#4801ff 100%
);
color: #e2e2e2;
}
.coin-input::placeholder {
color: #e2e2e2;
}