mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
31 lines
474 B
CSS
31 lines
474 B
CSS
.container {
|
|
background-color: var(--background-color);
|
|
border-left: 3px solid var(--text-color);
|
|
top: 0;
|
|
right: 0px;
|
|
height: 100%;
|
|
width: 400px;
|
|
max-width: 100%;
|
|
position: fixed;
|
|
|
|
display: flex;
|
|
}
|
|
|
|
.closeBorder {
|
|
font-size: 14px;
|
|
padding: 2px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
color: white;
|
|
background-color: #222;
|
|
}
|
|
|
|
.closeBorder:hover {
|
|
background-color: #333;
|
|
}
|
|
|
|
.content {
|
|
width: 100%;
|
|
}
|