forked from lahiru-rajapakshe/language-translator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (92 loc) · 1.62 KB
/
style.css
File metadata and controls
111 lines (92 loc) · 1.62 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #5372F7;
}
.container{
width: 690px;
background:#fff;
border-radius: 7px;
padding: 30px;
}
.wrapper{
border: 1px solid #bbb;
border-radius: 5px;
}
.text-input textarea{
height: 250px;
width: 100%;
border: none;
outline: none;
background: none;
font-size: 18px;
border-radius: 5px;
padding: 10px 15px;
resize: none;
}
.wrapper .text-input{
display: flex;
border-bottom: 1px solid #bbb;
}
.text-input .to-text{
border-left: 1px solid #bbb;
border-radius: 0px;
}
.controls, li, .icons, .icons i{
display: flex;
align-items: center;
justify-content: space-between;
}
.controls{
list-style: none;
padding: 12px 15px;
}
.controls .icons i{
color: #9f9f9f;
font-size: 14px;
cursor: pointer;
width: 50px;
justify-content: center;
}
.controls .row select{
border: none;
outline: none;
background: none;
font-size: 18px;
}
.controls .exchange{
color: #9f9f9f;
font-size: 16px;
cursor: pointer;
}
.controls .icons{
width: 38%;
}
.controls .row.form .icons{
border-right: 1px solid #bbb;
padding-right: 15px;
}
.controls .row.to .icons{
border-right: 1px solid #bbb;
padding-right: 15px;
}
.container button{
width: 100%;
padding: 14px;
margin-top: 20px;
border: none;
outline: none;
background: #5372F7;
cursor: pointer;
border-radius: 5px;
color: #fff;
font-size: 17px;
outline: none;
}