2013-09-10 16:19:14 +00:00
|
|
|
.palette {
|
|
|
|
display: none;
|
2013-10-04 04:33:04 +00:00
|
|
|
width: 320px;
|
2013-09-10 16:19:14 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 20px;
|
|
|
|
left: ~"calc(50% - 150px)";
|
2013-10-15 05:17:58 +00:00
|
|
|
background: transparent;
|
2013-09-13 22:57:57 +00:00
|
|
|
color: darken(@foreground, 30%);
|
2013-09-10 16:19:14 +00:00
|
|
|
z-index: 999;
|
2013-09-13 18:13:00 +00:00
|
|
|
font-size: 16px;
|
2015-06-25 19:50:56 +00:00
|
|
|
box-shadow: 0px 8px 16px rgba(0, 0, 0, .2);
|
2013-09-10 16:19:14 +00:00
|
|
|
|
2013-10-15 05:17:58 +00:00
|
|
|
@paletteBackground: lighten(@background, 10%);
|
|
|
|
|
2014-05-14 05:46:49 +00:00
|
|
|
transition-property: opacity, -webkit-transform;
|
|
|
|
transition-duration: .1s, .2s;
|
|
|
|
transition-timing-function: linear, ease-in-out;
|
|
|
|
|
|
|
|
-webkit-transform: perspective(1000px) translateY(0px) rotateX(0deg) translateZ(0);
|
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
&.enter {
|
|
|
|
opacity: .2;
|
|
|
|
transition-duration: 0s, 0s;
|
|
|
|
-webkit-transform: perspective(1000px) translateY(10px) rotateX(-45deg) translateZ(-20px);
|
|
|
|
}
|
|
|
|
|
2013-09-10 16:19:14 +00:00
|
|
|
&.active {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2013-10-15 05:17:58 +00:00
|
|
|
.main {
|
|
|
|
background: @paletteBackground;
|
|
|
|
padding: 8px 12px;
|
|
|
|
}
|
|
|
|
|
2013-09-10 16:19:14 +00:00
|
|
|
h1 {
|
2015-06-25 19:50:56 +00:00
|
|
|
font-size: 16px;
|
2013-09-10 16:19:14 +00:00
|
|
|
padding: 0;
|
2013-10-15 05:17:58 +00:00
|
|
|
margin-top: 0px;
|
2015-06-25 19:50:56 +00:00
|
|
|
font-weight: normal;
|
2013-09-10 16:19:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
2013-10-15 05:17:58 +00:00
|
|
|
width: 100%;
|
2013-09-11 06:15:04 +00:00
|
|
|
display: block;
|
2015-06-25 19:50:56 +00:00
|
|
|
border: none;
|
|
|
|
border-bottom: 2px solid @background;
|
2013-09-10 16:19:14 +00:00
|
|
|
padding: 8px;
|
2013-10-15 05:17:58 +00:00
|
|
|
margin-top: 8px;
|
2013-09-10 16:19:14 +00:00
|
|
|
background: transparent;
|
2013-09-20 06:45:04 +00:00
|
|
|
color: @foreground;
|
2013-09-10 16:19:14 +00:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 18px;
|
2013-09-20 06:45:04 +00:00
|
|
|
|
|
|
|
&:focus {
|
2015-06-25 19:50:56 +00:00
|
|
|
outline: none;
|
|
|
|
border-bottom: 2px solid @accent;
|
2013-09-20 06:45:04 +00:00
|
|
|
}
|
2013-09-10 16:19:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.results {
|
2015-06-25 19:50:56 +00:00
|
|
|
background: fade(@paletteBackground, 90%);
|
2013-09-10 16:19:14 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
list-style-type: none;
|
2015-06-25 19:50:56 +00:00
|
|
|
z-index: 999;
|
|
|
|
border-top: 1px solid @faded;
|
2013-09-10 16:19:14 +00:00
|
|
|
|
|
|
|
li {
|
2015-06-25 19:50:56 +00:00
|
|
|
border-left: 2px solid @faded;
|
2013-09-10 16:19:14 +00:00
|
|
|
display: block;
|
2013-09-11 06:15:04 +00:00
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
&.current {
|
2015-06-25 19:50:56 +00:00
|
|
|
border-left: 2px solid @accent;
|
2013-09-11 06:15:04 +00:00
|
|
|
font-weight: bold;
|
2015-06-25 19:50:56 +00:00
|
|
|
background: @paletteBackground;
|
2013-09-11 06:15:04 +00:00
|
|
|
}
|
2013-10-04 03:59:46 +00:00
|
|
|
|
|
|
|
.label {
|
2015-06-25 19:50:56 +00:00
|
|
|
font-size: 18px;
|
2013-10-04 03:59:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sublabel {
|
2015-06-25 19:50:56 +00:00
|
|
|
font-size: 14px;
|
|
|
|
// font-weight: normal;
|
2013-10-04 04:33:04 +00:00
|
|
|
white-space: nowrap;
|
2013-10-04 03:59:46 +00:00
|
|
|
overflow: hidden;
|
|
|
|
max-height: 1.5em;
|
2015-06-25 19:50:56 +00:00
|
|
|
margin-top: 4px;
|
2013-10-04 03:59:46 +00:00
|
|
|
}
|
2013-09-10 16:19:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|