This repository has been archived by the owner on Jan 23, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWindows10.css
116 lines (102 loc) · 2.39 KB
/
Windows10.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
.checkbox .checkbox-inner input[type=checkbox]:checked+span {
background-color: #fff;
border-color: #7b7b7b;
border-radius: 0;
border-width: 1px;
}
.checkbox .checkbox-inner input[type=checkbox]:checked+span:after {
content: "";
position: absolute;
top: 1px;
left: 5px;
display: table;
width: 4px;
height: 10px;
border: 2px solid #000;
border-top-width: 0;
border-left-width: 0;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
transition: opacity 0.2s ease;
}
.checkbox .checkbox-inner span {
background-color: #fff;
border-color: #8e8f8f;
border-radius: 0;
border-width: 1px;
transition: all 0.2s ease;
}
.item-toggle .checkbox .checkbox-inner span {
box-shadow: inset 0px 0px 0px 1px #8e8f8f;
border-color: #8e8f8f;
}
.checkbox span {
background-color: #fff;
border-color: #8e8f8f;
border-radius: 0;
border-width: 1px;
transition: all 0.2s ease;
}
.checkbox .checkbox-inner span:hover,
.checkbox .checkbox-inner input[type=checkbox]:checked+span:hover {
background-color: #fff;
border-color: #6fc4ee;
border-radius: 0;
transition: all 0.2s ease;
}
.Select-control{
color:#202020!important;
border:#707070 2px solid!important;
box-shadow:none;
border-radius: 0px;
border-color:#7b7b7b!important;
transition:all 0.2s ease;
}
.has-value>.Select-control>.Select-placeholder,
.has-value>.Select-control>.Select-value {
padding-top: 1px;
padding-bottom: 0px;
}
.Select>.Select-control {
height: 20px;
}
.Select-control:hover,
.Select-control:active {
transition:all 0.2s ease;
border-color:#6fc4ee!important;
}
.Select-option{
font-family:Segoe UI;
font-size:12px!important;
transition:all 0.2s ease;
padding: 5px;
}
.form .Select-option.is-focused {
font-family:Segoe UI;
font-size:12px!important;
color: #fff;
background-color: #3399ff;
transition:all 0.2s ease;
}
.radio .radio-inner {
width: 20px;
height: 20px;
top: 4px;
left: 4px;
background-color: rgba(0,0,0,0);
border-color: #8e8f8f;
border-width: 1px;
transition: all 0.2s ease;
}
.radio .radio-inner:hover {
border-color: #6fc4ee;
transition: all 0.2s ease;
}
.radio .radio-inner span:after {
opacity: 0;
content: "";
background: #000;
top: -1px;
left: -1px;
-webkit-transition: .3s ease;
}