Caret/css/palette.less

95 lines
1.9 KiB
Text
Raw Normal View History

2013-09-10 16:19:14 +00:00
.palette {
display: none;
width: 320px;
2013-09-10 16:19:14 +00:00
position: fixed;
top: 20px;
left: ~"calc(50% - 150px)";
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;
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
@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;
}
.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;
margin-top: 0px;
2015-06-25 19:50:56 +00:00
font-weight: normal;
2013-09-10 16:19:14 +00:00
}
input {
width: 100%;
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;
margin-top: 8px;
2013-09-10 16:19:14 +00:00
background: transparent;
color: @foreground;
2013-09-10 16:19:14 +00:00
font-weight: bold;
font-size: 18px;
&:focus {
2015-06-25 19:50:56 +00:00
outline: none;
border-bottom: 2px solid @accent;
}
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;
padding: 8px;
&.current {
2015-06-25 19:50:56 +00:00
border-left: 2px solid @accent;
font-weight: bold;
2015-06-25 19:50:56 +00:00
background: @paletteBackground;
}
.label {
2015-06-25 19:50:56 +00:00
font-size: 18px;
}
.sublabel {
2015-06-25 19:50:56 +00:00
font-size: 14px;
// font-weight: normal;
white-space: nowrap;
overflow: hidden;
max-height: 1.5em;
2015-06-25 19:50:56 +00:00
margin-top: 4px;
}
2013-09-10 16:19:14 +00:00
}
}
}