configbar.scss
1.6 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@import "../layout/scss/mixins";
@include keyframes(rotating) {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* CONFIG TOOLS */
#config-tool {
@include transition(all 0.2s ease-in-out 0s);
@include box-shadow(0px 1px 4px rgba(0, 0, 0, 0.3));
position: fixed;
right: 0;
top: 120px;
min-width: 200px;
z-index: 1000;
#config-tool-cog {
@include border-radius($border-radius-base 0 0 $border-radius-base);
@include transition(all 0.1s ease-in-out 0s);
@include box-shadow(-3px 3px 3px -2px rgba(0, 0, 0, 0.1));
background: #fff;
cursor: pointer;
left: -50px;
padding: 10px;
position: absolute;
text-align: center;
width: 50px;
top: 0;
i {
font-size: 2.2em;
}
.anim-icon {
@include animation(rotating 0.7s ease-in-out 0s);
}
}
&.closed {
right: -280px;
box-shadow: none;
#config-tool-cog {
&:hover {
background-color: $primary-color;
color: #fff;
}
}
}
&.opened {
right: 0;
}
.section-title {
margin: 30px 0 5px;
font: {
size: 15px;
weight: bold;
}
}
#config-tool-options {
@include box-shadow(-3px 3px 3px -2px rgba(0, 0, 0, 0.1));
background: #fff;
padding: 15px;
h4 {
margin: 0;
font-size: 1.3em;
}
ul {
list-style: none;
border-radius: 2px;
padding: 0;
background: {
clip: padding-box;
color: #f1f3f2;
}
li {
padding: 10px;
width: 250px;
min-height: 50px;
font: {
size: 13px;
weight: 300;
}
.checkbox {
margin: 0;
}
.pull-left {
margin-top: 8px;
font-weight: normal;
}
}
}
}
}