39 lines
No EOL
788 B
CSS
39 lines
No EOL
788 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 #000000,inset 1px 1px #202020,inset -2px -2px #151515,inset 2px 2px #404040 !important;
|
|
}
|
|
.window .title-bar {
|
|
background: linear-gradient(90deg, navy, #0a52b1) !important;
|
|
}
|
|
.window-body {
|
|
padding: 10px;
|
|
}
|
|
#header {
|
|
display: flex;
|
|
}
|
|
#header h3 {
|
|
font-weight: 400;
|
|
margin-left: 20px;
|
|
}
|
|
#pfp {
|
|
width: 90px;
|
|
height: 90px;
|
|
border-radius: 3px;
|
|
border-color: var(--offline-color);
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
} |