-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
133 lines (110 loc) · 2.1 KB
/
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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #FFC500;
}
.container{
width: 690px;
background: #fff;
border-radius: 7px;
padding: 30px;
}
.wrapper{
border-radius: 5px;
border: 1px solid #bbb;
}
.wrapper .text-input{
display: flex;
border-bottom: 1px solid #bbb;
}
.text-input .to-text{
border-radius: 0px;
border-left: 1px solid #bbb;
}
.text-input textarea{
height: 250px;
width: 100%;
border: none;
outline: none;
background: none;
font-size: 18px;
border-radius: 5px;
padding: 10px 15px;
resize: none;
}
.controls, li, .icons, .icons i{
display: flex;
align-items: center;
justify-content: space-between;
}
.controls{
padding: 12px 15px;
list-style: none;
}
.controls .icons{
width: 38%;
}
.controls .icons i{
width: 50px;
color: #9f9f9f;
font-size: 14px;
cursor: pointer;
justify-content: center;
}
.controls .row.from .icons{
border-right: 1px solid #bbb;
padding-right: 15px;
}
.controls .row.to .icons{
border-left: 1px solid #bbb;
padding-left: 15px;
}
.controls .row select{
border: none;
outline: none;
background: none;
font-size: 18px;
}
.controls .exchange{
color: #9f9f9f;
font-size: 16px;
cursor: pointer;
}
.container button{
width: 100%;
padding: 14px;
margin-top: 20px;
border: none;
outline: none;
background: #FFC500;
cursor: pointer;
border-radius: 5px;
color: #fff;
font-size: 17px;
transition: 0.3s;
}
.container button:hover{
background: #eeb800;
}
@media screen and (max-width: 715px) {
.text-input{
flex-direction: column;
}
.text-input .to-text{
border-radius: 0px;
border-top: 1px solid #bbb;
}
.controls{
row-gap: 2rem;
flex-direction: column;
}
}