-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
98 lines (84 loc) · 1.62 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Montserrat', sans-serif;
background-color: #29303B;
}
.wrapper {
padding: 50px;
width: 800px;
background-image: linear-gradient(#3F4B59, #333D46);
color: #fff;
text-align: center;
border: 1px solid #1C232D;
border-radius: 15px;
box-shadow: 0 0 15px #1C232D;
}
.wrapper h1 {
margin-bottom: 10px;
font-size: 36px;
}
.wrapper p {
margin-bottom: 50px;
font-size: 26px;
font-weight: 200;
}
.app-body {
display: flex;
justify-content: center;
align-items: center;
}
.section-left, .section-right {
display: flex;
flex-direction: column;
align-items: center;
}
.app-body input {
margin-bottom: 10px;
width: 100%;
font-size: 60px;
}
.app-body input, .app-body select {
color: #fff;
border: none;
background: none;
text-align: center;
}
.app-body select {
padding: 10px 20px;
font-size: 36px;
cursor: pointer;
}
.app-body input:focus, .app-body select:focus {
outline: none;
color: rgb(67,171,255);
}
.app-body option {
color: #333;
}
.swap {
align-self: flex-end;
margin: 5px;
padding: 5px 50px;
background-image: linear-gradient(45deg, #2b89e7, #11e763);
font-size: 30px;
border: none;
border-radius: 25px;
color: #fff;
cursor: pointer;
}
.swap:focus {
outline: none;
background-image: linear-gradient(45deg, #317fcc, #1fc06a);
}
.wrapper .rate-info {
margin-top: 30px;
margin-bottom: 0;
}