36 lines
699 B
CSS
36 lines
699 B
CSS
|
:root {
|
||
|
--online-color: #23a55a;
|
||
|
--idle-color: #f0b232;
|
||
|
--dnd-color: #f23f43;
|
||
|
--offline-color: #80848e;
|
||
|
}
|
||
|
body {
|
||
|
background-color: #003D3D;
|
||
|
padding: 30px;
|
||
|
}
|
||
|
#main-window {
|
||
|
max-width: 600px;
|
||
|
}
|
||
|
.window {
|
||
|
background-color: #202020 !important;
|
||
|
color: white;
|
||
|
box-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #404040,inset -2px -2px grey,inset 2px 2px #202020 !important;
|
||
|
}
|
||
|
.window-body {
|
||
|
padding: 10px;
|
||
|
}
|
||
|
#header {
|
||
|
display: flex;
|
||
|
}
|
||
|
#header h3 {
|
||
|
font-size: xx-large;
|
||
|
font-weight: 400;
|
||
|
margin-left: 20px;
|
||
|
}
|
||
|
#pfp {
|
||
|
width: 90px;
|
||
|
border-radius: 3px;
|
||
|
border-color: var(--offline-color);
|
||
|
border-style: solid;
|
||
|
border-width: 2px;
|
||
|
}
|