34 lines
767 B
SCSS
34 lines
767 B
SCSS
// Style for modal boxes that pop up to notify the user of various events
|
|
.vote-notification {
|
|
background-color: darken(#666, 7%);
|
|
@include border-radius(4px);
|
|
@include box-shadow(0px 2px 9px #aaa);
|
|
color: white;
|
|
cursor: pointer;
|
|
display: none;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
padding-bottom: 10px;
|
|
position: absolute;
|
|
text-align: center;
|
|
z-index: 1;
|
|
|
|
h3 {
|
|
background: #666;
|
|
padding: 10px 10px 10px 10px;
|
|
font-size: 13px;
|
|
margin-bottom: 5px;
|
|
border-bottom: darken(#666, 10%) 1px solid;
|
|
@include box-shadow(0 1px 0 lighten(#666, 10%));
|
|
color: #fff;
|
|
font-weight: normal;
|
|
@include border-radius(4px 4px 0 0);
|
|
}
|
|
|
|
a {
|
|
color: #fb7321;
|
|
text-decoration: underline;
|
|
font-weight: bold;
|
|
}
|
|
}
|