2024-05-10 17:31:20 -04:00
|
|
|
:root {
|
|
|
|
--online-color: #23a55a;
|
|
|
|
--idle-color: #f0b232;
|
|
|
|
--dnd-color: #f23f43;
|
|
|
|
--offline-color: #80848e;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
padding: 30px;
|
2024-06-02 06:58:32 -04:00
|
|
|
font-family: "Segoe UI", "Roboto", sans-serif !important;
|
2024-06-02 06:57:19 -04:00
|
|
|
background-size: cover;
|
2024-06-02 06:54:54 -04:00
|
|
|
background-image: url(wallpaper.jpg);
|
2024-05-10 17:31:20 -04:00
|
|
|
}
|
|
|
|
#main-window {
|
|
|
|
max-width: 600px;
|
|
|
|
}
|
2024-06-01 21:43:04 -04:00
|
|
|
|
2024-05-10 17:31:20 -04:00
|
|
|
.window-body {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
#header {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
#header h3 {
|
|
|
|
font-weight: 400;
|
|
|
|
margin-left: 20px;
|
2024-05-10 18:04:37 -04:00
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
2024-05-10 17:31:20 -04:00
|
|
|
}
|
|
|
|
#pfp {
|
|
|
|
width: 90px;
|
2024-05-10 18:02:37 -04:00
|
|
|
height: 90px;
|
2024-05-10 17:31:20 -04:00
|
|
|
border-radius: 3px;
|
|
|
|
border-color: var(--offline-color);
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 2px;
|
2024-05-11 02:31:13 -04:00
|
|
|
}
|
2024-06-01 21:53:01 -04:00
|
|
|
|
2024-05-11 02:31:13 -04:00
|
|
|
a {
|
2024-06-01 21:43:04 -04:00
|
|
|
color: blue;
|
2024-05-11 03:19:40 -04:00
|
|
|
}
|
|
|
|
li {
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
#presence img {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
#presence-content {
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
#presence {
|
|
|
|
display: flex;
|
2024-05-11 03:37:27 -04:00
|
|
|
}
|
|
|
|
#bottom-actions {
|
|
|
|
display: flex;
|
|
|
|
align-items: end;
|
|
|
|
justify-content: right;
|
|
|
|
}
|