-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
93 lines (84 loc) · 2 KB
/
Copy pathoptions.css
File metadata and controls
93 lines (84 loc) · 2 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
.pull-left {
float: left;
}
button[type="submit"] {
display: inline-block;
margin: 0;
font-family: sans-serif;
font-size: 18px;
padding: 10px;
border: solid 1px #dcdcdc;
}
button[type="submit"]:hover {
border: solid 1px #666;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}
input[type="number"] {
display: inline-block;
margin: 0;
width: 40px;
font-family: sans-serif;
font-size: 18px;
appearance: none;
box-shadow: none;
border-radius: none;
}
input[type="number"]:focus {
outline: none;
}
.style-1 input[type="number"] {
padding: 10px;
border: solid 1px #dcdcdc;
transition: box-shadow 0.3s, border 0.3s;
}
.style-1 input[type="number"]:focus,
.style-1 input[type="number"].focus {
border: solid 1px #707070;
box-shadow: 0 0 5px 1px #969696;
}
.style-2 input[type="number"] {
padding: 10px;
border: solid 5px #c9c9c9;
transition: border 0.3s;
}
.style-2 input[type="number"]:focus,
.style-2 input[type="number"].focus {
border: solid 5px #969696;
}
.style-3 input[type="number"] {
padding: 10px;
border: solid 5px #c9c9c9;
box-shadow: inset 0 0 0 1px #707070;
transition: box-shadow 0.3s, border 0.3s;
}
.style-3 input[type="number"]:focus,
.style-3 input[type="number"].focus {
border: solid 5px #969696;
}
.style-4 input[type="number"] {
padding: 10px;
border: none;
border-bottom: solid 2px #c9c9c9;
transition: border 0.3s;
}
.style-4 input[type="number"]:focus,
.style-4 input[type="number"].focus {
border-bottom: solid 2px #969696;
}
.style-5 input[type="number"] {
padding: 10px;
border: solid 1px #fff;
box-shadow: inset 1px 1px 2px 0 #707070;
transition: box-shadow 0.3s;
}
.style-5 input[type="number"]:focus,
.style-5 input[type="number"].focus {
box-shadow: inset 1px 1px 2px 0 #c9c9c9;
}