fistcommit
This commit is contained in:
173
assets/color-switcher/color-switcher.less
Normal file
173
assets/color-switcher/color-switcher.less
Normal file
@ -0,0 +1,173 @@
|
||||
/*
|
||||
Color Switcher
|
||||
Version 1.0
|
||||
-------------------------------------------------------------------------*/
|
||||
|
||||
/* Spin Keyframes */
|
||||
@-webkit-keyframes gear-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes gear-spin {
|
||||
0% {
|
||||
-moz-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-moz-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@keyframes gear-spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
#color-switcher{
|
||||
position: fixed;
|
||||
top: 110px;
|
||||
right: 10px;
|
||||
z-index: 999;
|
||||
.btn-switcher{
|
||||
width: 47px;
|
||||
height: 47px;
|
||||
padding: 6px;
|
||||
background: #ffffff;
|
||||
border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
box-shadow: 0 0 0 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);
|
||||
-moz-box-shadow: 0 0 0 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);
|
||||
-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);
|
||||
.ico{
|
||||
font-size: 28px;
|
||||
line-height: 35px;
|
||||
animation: gear-spin 2s infinite linear;
|
||||
-webkit-animation: gear-spin 2s infinite linear;
|
||||
-moz-animation: gear-spin 2s infinite linear;
|
||||
}
|
||||
}
|
||||
.content{
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 48px;
|
||||
right: 0;
|
||||
width: 212px;
|
||||
padding: 10px 0px 2px 10px;
|
||||
z-index: 9;
|
||||
font-size: 0;
|
||||
background: #ffffff;
|
||||
border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
box-shadow: 0 0 0 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);
|
||||
-moz-box-shadow: 0 0 0 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);
|
||||
-webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.05),0 1px 1px rgba(0,0,0,0.05);
|
||||
.btn-restore-default{
|
||||
display: inline-block;
|
||||
padding: 5px 10px;
|
||||
margin: 5px 0 10px;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
border: 1px solid #cccccc;
|
||||
border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
transition: 0.4s ease all;
|
||||
-webkit-transition: 0.4s ease all;
|
||||
-moz-transition: 0.4s ease all;
|
||||
&:hover{
|
||||
background: #cccccc;
|
||||
}
|
||||
}
|
||||
.item{
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
margin-right: 8px;
|
||||
margin-bottom: 8px;
|
||||
text-align: center;
|
||||
.color{
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
}
|
||||
.text{
|
||||
display: none;
|
||||
position: absolute;
|
||||
bottom: 100%;
|
||||
left: 50%;
|
||||
white-space: nowrap;
|
||||
padding: 3px 9px;
|
||||
background: #212121;
|
||||
color: #ffffff;
|
||||
margin-bottom: 5px;
|
||||
border-radius: 2px;
|
||||
-webkit-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
transform: translate(-50%,0);
|
||||
-webkit-transform: translate(-50%,0);
|
||||
-moz-transform: translate(-50%,0);
|
||||
&:before{
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
width: 8px;
|
||||
height: 4px;
|
||||
border-left: 4px solid transparent;
|
||||
border-right: 4px solid transparent;
|
||||
border-top: 4px solid #212211;
|
||||
}
|
||||
}
|
||||
&:hover{
|
||||
.text{
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&.active:before{
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
left: 2px;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border: 2px solid #fff;
|
||||
border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
html[dir="rtl"]{
|
||||
#color-switcher{
|
||||
right: auto;
|
||||
left: 20px;
|
||||
.content{
|
||||
right: auto;
|
||||
left: 0;
|
||||
padding: 10px 10px 2px 2px;
|
||||
.item{
|
||||
margin-right: 0;
|
||||
margin-left: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user