-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSplitScreen.css
76 lines (76 loc) · 1.51 KB
/
SplitScreen.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
html{
display: inline-table;
}
body{
width: 300px;
}
#SplitScreen{
width: 148px;
line-height: 1;
border: 1px solid #dcdfe6;
-webkit-appearance: none;
text-align: center;
font-weight: 600;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
padding: 12px 20px;
font-size: 14px;
border-radius: 4px;
color: #fff;
background-color: #67c23a;
border-color: #67c23a;
}
#SplitScreen:hover{
background: #85ce61;
border-color: #85ce61;
}
#clean{
width: 148px;
line-height: 1;
border: 1px solid #dcdfe6;
-webkit-appearance: none;
text-align: center;
font-weight: 600;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
padding: 12px 20px;
font-size: 14px;
border-radius: 4px;
color: #fff;
background-color: #f56c6c;
border-color: #f56c6c;
}
#clean:hover{
background: #f78989;
border-color: #f78989;
}
input[placeholder]{
width: 300px;
-webkit-appearance: none;
background-color: #fff;
background-image: none;
border-radius: 4px;
border: 1px solid #dcdfe6;
box-sizing: border-box;
color: #606266;
display: inline-block;
font-size: inherit;
height: 40px;
line-height: 40px;
outline: none;
padding: 0 15px;
}
input{
margin-bottom: 6px;
}
#alert{
font-weight: 600;
text-align: center;
padding: 8px 16px;
border-radius: 4px;
background-color: #f56c6c;
color: #fff;
font-size: 13px;
}