24 lines
359 B
SCSS
24 lines
359 B
SCSS
.infobox {
|
|
border: 1px solid #e6e9ed;
|
|
background-color: $gray-background;
|
|
border-radius: 3px;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
margin-top: 10px;
|
|
|
|
p {
|
|
line-height: 1.55;
|
|
}
|
|
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.close {
|
|
position: relative;
|
|
right: -10px;
|
|
top: -10px;
|
|
font-size: 14px;
|
|
}
|
|
}
|