60 lines
970 B
SCSS
60 lines
970 B
SCSS
|
|
.announcements {
|
|
padding: 0 10px;
|
|
|
|
li {
|
|
display: flex;
|
|
padding: 10px;
|
|
color: #282c37;
|
|
background: darken($white, 10%);
|
|
border-radius: 4px;
|
|
|
|
& + li {
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.announcements__admin {
|
|
width: 100%;
|
|
position: relative;
|
|
|
|
p {
|
|
padding: 0 5px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.announcements__icon {
|
|
display: inline-block;
|
|
position: absolute;
|
|
margin: -5px 5px;
|
|
right: 10px;
|
|
}
|
|
|
|
.announcements__body {
|
|
width: 100%;
|
|
position: relative;
|
|
|
|
p {
|
|
padding: 0 5px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
a {
|
|
display: inline-block;
|
|
float: right;
|
|
clear: both;
|
|
color: #282c37;
|
|
background: darken($white, 5%);
|
|
text-decoration: none;
|
|
padding: 1px 10px 0;
|
|
border: solid 1px #282c37;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
border-radius: 4px;
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
|