27 lines
No EOL
578 B
CSS
27 lines
No EOL
578 B
CSS
.banner-container {
|
|
position: fixed;
|
|
top: 4rem;
|
|
right: 1rem;
|
|
background-color: var(--background-color);
|
|
border: solid var(--highlight-color) 0.1rem;
|
|
border-radius: 1rem;
|
|
padding: 0.5rem 1rem;
|
|
z-index: +1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 15rem;
|
|
}
|
|
.banner-body {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
.banner {
|
|
border: solid var(--highlight-color) 0.1rem;
|
|
border-radius: 1rem;
|
|
padding: 0.25rem 0.5rem;
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: center;
|
|
margin: 0.25rem;
|
|
} |