nci/static/css/sources/components/projects.less

66 lines
980 B
Plaintext
Raw Normal View History

2015-06-14 11:24:31 +00:00
.projects-selector {
position: relative;
width: 300px;
color: white;
cursor: pointer;
2015-07-11 18:09:28 +00:00
2015-06-14 11:24:31 +00:00
&_preview {
color: rgba(255, 255, 255, 0.5);
padding: 5px 25px 5px 5px;
&_text {
padding-left: 10px;
}
}
&_input {
width: 80%;
padding-bottom: 3px;
padding-left: 10px;
border: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
background: transparent;
outline: none;
}
&_items {
position: absolute;
width: 100%;
padding: 0;
padding-top: 15px;
2015-06-14 11:24:31 +00:00
left: 0;
background: @brand-primary;
2015-06-14 11:24:31 +00:00
list-style: none;
}
&_item {
.clearfix();
padding: 10px 10px;
&_link {
float: left;
2015-07-11 18:09:28 +00:00
width: 90%;
color: white;
text-decoration: none;
&:hover {
color: white;
text-decoration: none;
}
}
2015-06-14 11:24:31 +00:00
&_run {
float: right;
2015-07-11 18:09:28 +00:00
width: 10%;
2015-06-14 11:24:31 +00:00
color: rgba(255, 255, 255, 0.5);
2015-07-11 18:09:28 +00:00
text-align: right;
2015-06-14 11:24:31 +00:00
&:hover {
color: white;
text-decoration: none;
}
}
&:hover {
background: lighten(@brand-primary, 10%);
}
2015-06-14 11:24:31 +00:00
}
}