forked from Avdhesh-Varshney/blog-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
118 lines (103 loc) · 1.93 KB
/
styles.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
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: 'roboto','sans-serif';
}
body{
height:100vh;
background-color: #fff;
display: flex;
justify-content:center;
align-items: center;
}
.container{
width:900px;
background-color: #fff;
box-shadow: 0 2px 20px rgba(0,0,0,0.3);
border-radius: 5px;
overflow: hidden;
}
.translator_property{
border:1px solid #c7c7c783;
}
.translator_property .nav-item{
display: flex;
width:100%;
height:50px;
justify-content: space-between;
align-items: center;
list-style: none;
border-bottom: 1px solid #c7c7c783;
padding:0 20px;
}
.translator_property .nav-item li select{
outline: none;
border-style: none;
padding: 10px 0;
font-size:17px;
font-weight:500;
color:#606060;
cursor: pointer;
transition: all .3s ease-out;
}
.bx-transfer{
font-size:22px;
color:#606060;
cursor:pointer;
transition: all .3s ease-out;
}
.bx-tranfer:hover{
color:#111;
}
.write_box{
display: flex;
}
.Property_from, .Property_trans{
width:100%;
position: relative;
}
.write_box textarea{
width:100%;
height:250px;
border-style: none;
outline:none;
resize: none;
padding:10px 20px;
font-size: 20px;
color:#606060;
position: relative;
}
.write_box textarea:nth-child(1){
border-right:1px solid #c7c7c7;
}
.write_box .icons{
position:absolute;
right: 0;
bottom: 0;
display: flex;
width:100%;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
}
.icons .bx{
height:35px;
width:35px;
background: #add;
text-align:center;
line-height: 35px;
font-size: 18px;
color:#000;
border-radius: 50%;
cursor: pointer;
transition: all .3s ease-out;
}
.icons .bx:hover{
background: #606060;
color:wheat;
}
.code_length{
font-size: 18px;
color: #606060;
}