-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
101 lines (99 loc) · 1.75 KB
/
index.css
File metadata and controls
101 lines (99 loc) · 1.75 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
.title{
width: 160px;
height: 100%;
text-align: center;
background-color: #40514e;
color: #fff;
font-size: 14px;
font-family: fantasy;
text-align: left;
padding-top:10px;
vertical-align: middle;
float: left;
box-sizing: border-box;
border-right:10px solid #11999e;
}
.content{
width: 80%;
height: 100%;
vertical-align: middle;
border: 10px solid #40514e;
border-left: none;
float: left;
border-radius:0 10px 10px 0;
background-color: #fff;
box-sizing: border-box;
padding: 30px;
}
li{
margin: 0;
padding: 0;
height: 80px;
list-style-type:none;
border-bottom: 20px solid #fff;
background-color: #000;
word-break: break-all;
font-weight: 300;
cursor:pointer;
}
span{
display: inline-block;
position: relative;
top:50%;
transform: translateY(-50%);
}
input[type=text]:focus{
outline: none;
border: 1px solid #4395ff;
}
.exportString:focus{
outline: none;
border: 1px solid #eee;
}
.inputString:focus{
outline: none;
border: 1px solid #4395ff;
}
.active{
background-color: #fff;
font-size: 15px;
color: #000;
border-bottom:none;
width: 140px;
padding-right:20px;
font-weight: 500;
}
.activeStyle{
border-bottom:none;
}
.activeStyle3{
border-top: 20px solid #fff;
}
.lableId{
font-weight: 400;
font-size: 13px;
color: rgb(82, 79, 79);
}
.result{
margin-top:40px;
width: 350px;
height: 400px;
border: 1px solid rgb(243, 243, 243);
background-color: #e4f9f5;
border-radius: 5px;
}
.content textarea{
display: inline-block;
margin-top:40px;
width: 350px;
height: 400px;
border-radius: 5px;
}
textarea.inputString{
margin-right: 20px;
border: 1px solid #b8b8b8;
background-color: #fff;
}
textarea.exportString{
border: 1px solid #eee;
}