blob: bd1210df3bb04fa47037216758e7e6ae84b331fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.message-panel {
width: 100%;
margin: 10px auto;
position: fixed;
z-index: 10000;
text-align: center;
span {
background: $warning;
padding: 5px 60px;
border: 1px solid darken($warning, 10%);
color: darken($warning, 50%);
@include box-shadow(1px 1px 3px darken($warning, 60%));
}
}
|