25 lines
387 B
CSS
25 lines
387 B
CSS
.siteWideNotif {
|
|
width: 100%;
|
|
background: #4c82a3;
|
|
padding: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.siteWideNotifInside {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
grid-gap: 10px;
|
|
color: #ffffff;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.siteWideNotifInsideText {
|
|
flex-grow: 1;
|
|
text-align: center;
|
|
}
|
|
|