1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-17 13:54:26 +03:00
ifhub.club/application/frontend/components/note/css/note.css
Denis Shakhov c31a235423 Компоненты специфичные для lscms перенесены во frontend/components
Остальные перенесены во фреймворк
2015-01-31 19:16:15 +07:00

52 lines
914 B
CSS

/**
* Заметка
*/
.user-note {
background: #F1F7AF;
padding: 20px 20px 18px;
margin-bottom: 15px;
border-radius: 5px;
box-shadow: 0 1px 0 #DBE28B;
}
.user-note:last-child {
margin-bottom: 0;
}
/* Действия */
.user-note-actions {
margin: 10px 0 0 0;
}
.user-note-actions li {
float: left;
margin-right: 15px;
}
.user-note-actions li a {
text-decoration: none;
color: #B7BD79;
-webkit-transition: color .2s;
transition: color .2s;
}
.user-note-actions li a:hover {
color: #A3A86B;
}
.user-note-actions li a:focus {
outline: dotted 1px;
}
.user-note-actions--add {
margin: 0;
}
.user-note-actions--add li {
margin: 0;
float: none;
text-align: center;
}
/* Форма добавления/редактирования */
.user-note-form .field {
margin-bottom: 15px;
}
.user-note-form-text {
height: 5em;
}