73 lines
1.6 KiB
SCSS
73 lines
1.6 KiB
SCSS
/** COLORS **/
|
|
.cgray { color:gray }
|
|
.cred { color:#D12F19 }
|
|
.cgreen { color:#4a2 }
|
|
.cblack { color:#111 }
|
|
.cdark { color:#444 }
|
|
.cwhite { color:#fff!important }
|
|
.bgred { background:#F2DEDE!important }
|
|
|
|
/** COMMON CLASSES **/
|
|
.left { float:left }
|
|
.append-bottom-10 { margin-bottom:10px }
|
|
.append-bottom-20 { margin-bottom:20px }
|
|
.prepend-top-10 { margin-top:10px }
|
|
.prepend-top-20 { margin-top:20px }
|
|
.padded { padding:20px }
|
|
.ipadded { padding:20px!important }
|
|
.lborder { border-left:1px solid #eee }
|
|
.underlined_link { text-decoration: underline; }
|
|
.hint { font-style: italic; color: #999; }
|
|
.light { color: #888 }
|
|
.tiny { font-weight: normal }
|
|
.vtop { vertical-align: top; }
|
|
|
|
|
|
/** ALERT MESSAGES **/
|
|
.alert.alert-disabled {
|
|
background: #EEE;
|
|
color: #777;
|
|
border-color: #DDD;
|
|
}
|
|
|
|
/** HELPERS **/
|
|
.nothing_here_message {
|
|
text-align: center;
|
|
padding: 20px;
|
|
color: #666;
|
|
font-weight: normal;
|
|
font-size: 16px;
|
|
line-height: 36px;
|
|
}
|
|
|
|
p.slead { color: #456; font-size: 16px; margin-bottom: 12px; font-weight: 200; line-height: 24px; }
|
|
|
|
/** FORMS **/
|
|
input[type='search'].search-text-input {
|
|
background-image: url("icon-search.png");
|
|
background-repeat: no-repeat;
|
|
background-position: 10px;
|
|
padding-left: 25px;
|
|
@include border-radius(4px);
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
input[type='text'].danger {
|
|
background: #F2DEDE!important;
|
|
border-color: #D66;
|
|
text-shadow: 0 1px 1px #fff
|
|
}
|
|
|
|
fieldset legend { font-size: 17px; }
|
|
|
|
/** PAGINATION **/
|
|
.gitlab_pagination {
|
|
span a { color: $link_color; }
|
|
.prev, .next, .current, .page a {
|
|
padding: 10px;
|
|
}
|
|
.current {
|
|
border-bottom: 2px solid $style_color;
|
|
}
|
|
}
|