Files
standardnotes-app-web/app/assets/stylesheets/app/_notes.scss
2017-01-04 21:53:05 -06:00

82 lines
1.4 KiB
SCSS

.notes {
width: 25%;
border-left: 1px solid #dddddd;
border-right: 1px solid #dddddd;
.notes-title-bar {
color: rgba(black, 0.40);
padding-top: 16px !important;
height: 130px !important;
font-weight: normal !important;
font-size: 18px !important;
}
.tag-menu-bar {
position: relative;
margin: 0 -20px;
width: auto;
padding-top: 1px;
margin-top: 14px;
}
.filter-section {
clear: left;
height: 32px;
margin-top: 20px;
.filter-bar {
background-color: $bg-color;
border-radius: 4px;
height: 100%;
color: #909090;
text-align: center;
font-weight: normal;
font-size: 16px;
line-height: 35px;
border: none;
width: 100%;
}
}
.notes-footer {
border-top: 1px solid $bg-color;
position: absolute;
bottom: 0px;
margin-top: 1px solid $bg-color;
width: 100%;
text-align: center;
padding: 10px;
> .new-button {
}
}
.note {
width: 100%;
padding: 15px;
height: 70px;
border-bottom: 1px solid $bg-color;
cursor: pointer;
background-color: white;
> .name {
font-weight: 600;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
> .date {
font-size: 12px;
margin-top: 4px;
}
&.selected {
background-color: $blue-color;
color: white;
}
}
}