65 lines
1,009 B
CSS
65 lines
1,009 B
CSS
:root {
|
|
--online-color: #23a55a;
|
|
--idle-color: #f0b232;
|
|
--dnd-color: #f23f43;
|
|
--offline-color: #80848e;
|
|
}
|
|
body {
|
|
background-color: #003D3D;
|
|
padding: 30px;
|
|
font-family: sans-serif !important;
|
|
}
|
|
#main-window {
|
|
max-width: 600px;
|
|
}
|
|
|
|
.window-body {
|
|
padding: 10px;
|
|
}
|
|
#header {
|
|
display: flex;
|
|
}
|
|
#header h3 {
|
|
font-weight: 400;
|
|
margin-left: 20px;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
}
|
|
#pfp {
|
|
width: 90px;
|
|
height: 90px;
|
|
border-radius: 3px;
|
|
border-color: var(--offline-color);
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
}
|
|
legend {
|
|
background: #00000000;
|
|
}
|
|
fieldset {
|
|
border-color: #606060;
|
|
border-image: none;
|
|
}
|
|
a {
|
|
color: blue;
|
|
}
|
|
li {
|
|
padding: 2px;
|
|
}
|
|
#presence img {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
#presence-content {
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
margin-left: 10px;
|
|
}
|
|
#presence {
|
|
display: flex;
|
|
}
|
|
#bottom-actions {
|
|
display: flex;
|
|
align-items: end;
|
|
justify-content: right;
|
|
}
|