-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransfer.css
87 lines (74 loc) · 1.33 KB
/
transfer.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
.container {
width: 1000px;
margin: 50px auto;
border: 1px solid #ebebeb;
border-radius: 3px;
transition: .2s;
}
.list-group {
display: inline-block;
width: 400px;
margin: 50px auto;
vertical-align: middle;
height: 300px;
text-align: center;
}
.list-group-item {
text-align: left;
}
.selected-num {
text-align: center;
font-size: 12px;
margin-bottom: 10px;
}
.list-group p {
display: inline-block;
}
.search {
text-align: center;
}
.search .input-search {
border: 1px solid grey;
font-size: 12px;
margin: 20px auto;
width: 200px;
padding: 5px 10px;
border-radius: 20px;
}
.list-group input[type='search'] {
border: none;
outline: none;
width: 170px;
}
.form-check-label,
.form-check-input {
cursor: pointer;
}
.form-check-label:hover,
.form-check-input:checked+label {
color: #409eff;
}
.transfer_button_container {
display: inline-block;
text-align: center;
vertical-align: middle;
}
.transfer_button {
width: 35px;
height: 35px;
border-radius: 50%;
color: white;
background-color: #409eff;
border: none;
display: block;
margin: 20px;
cursor: pointer;
text-align: center;
}
.transfer_button:disabled {
background: grey;
cursor: not-allowed;
}
button:focus {
outline: none;
}