0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/assets/sass/modules/rolelables.scss

44 lines
712 B
SCSS
Raw Normal View History

/*
* Role Lable styles
*
* Table of Contents
*
* Role Labels
*/
/* ==========================================================================
Role Labels
========================================================================== */
.role-label {
background: #eee;
display: inline-block;
2014-07-11 19:20:00 +02:00
padding: 6px 8px;
color: rgba(0,0,0,0.5);
font-size: 9px;
2014-07-11 19:20:00 +02:00
line-height: 1;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 400;
&.owner, &.admin, &.editor {
color: rgba(255,255,255,0.7);
}
&.owner {
background: $darkgrey;
}
&.admin {
background: $red;
}
&.editor {
background: $blue;
}
}