20 lines
290 B
CSS
20 lines
290 B
CSS
|
.settings-area {
|
||
|
background: black;
|
||
|
border: 1px solid white;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 800px) {
|
||
|
.settings-area {
|
||
|
width: calc(100% - 1px);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.settings-section {
|
||
|
background: black;
|
||
|
border: 1px solid white;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
color: white;
|
||
|
}
|