-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
113 lines (110 loc) · 2.24 KB
/
app.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
.notification.fixed {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 10;
}
.notification.removable { cursor: pointer; }
input.editor {
width: 50px;
margin-left: 20px;
padding: 5px;
}
/**
* TAGS
*/
.tag-label,
.tag-value {
width: 200px;
}
/**
* SLIDER
*/
input[type="range"] {
position: relative;
-webkit-appearance: none;
width: 100%;
}
input[type="range"]:after,
input[type="range"]:before {
position: absolute;
top: 15px;
font-size: 2em;
}
input[type="range"]:before {
left: 0;
content: attr(min);
}
input[type="range"]:after {
right: 0;
content: attr(max);
}
input[type=range]:focus {
outline: none;
}
/** CHROME */
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 1.5em;
margin-left: 2em;
margin-right: 4em;
cursor: pointer;
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
background: #bdb64c;
}
input[type=range]::-webkit-slider-thumb {
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
height: 50px;
width: 16px;
background: #FFF;
cursor: pointer;
-webkit-appearance: none;
margin-top: -16px;
}
/** FIREFOX */
input[type=range]::-moz-range-track {
width: 100%;
height: 1.5em;
cursor: pointer;
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
background: #bdb64c;
}
input[type=range]::-moz-range-thumb {
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
height: 56px;
width: 16px;
background: #FFF;
cursor: pointer;
}
/** IE / EDGE ? */
input[type=range]::-ms-track {
width: 100%;
height: 1.5em;
cursor: pointer;
background: transparent;
border-color: transparent;
color: transparent;
}
input[type=range]::-ms-fill-lower,
input[type=range]::-ms-fill-upper {
background: #bdb64c;
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
height: 50px;
width: 16px;
background: #FFF;
cursor: pointer;
}
@media screen and (max-width: 400px) {
input[type="range"]:after,
input[type="range"]:before {
top: -5px;
}
#js-facebook-login,
#js-facebook-logout {
float: none !important;
}
}