Files
ReZygisk/webroot/css/index.css
T
RainyXeon / f79eaf1185 improve: ReZygisk webui state
This commit will improve ReZygisk webui state by adding new red color and hide settings/modules card if it's error or not exist
2024-11-12 00:08:31 -03:00

67 lines
885 B
CSS

:root {
--bright: #8d1d19;
--dim: #1d2327;
--error: #8d1d19;
}
* {
background-color: #181c20;
color: #fff;
font-family: 'ProductSans Regular', 'ProductSans Italic', sans-serif
}
body {
margin: 0;
}
a {
text-decoration: none !important;
}
.header {
position: fixed;
left: 0;
right: 0;
padding: 25px 15px;
font-size: 20px;
}
.card {
margin-left: 15px;
margin-right: 15px;
margin-bottom: 10px;
padding: 15px 15px;
border-radius: 15px;
color: #fff;
}
.content {
padding-bottom: 5px;
}
.spliter {
border-bottom: 1px solid #283136;
}
.liste {
justify-content: space-between;
align-self: center;
display: flex;
}
.bright {
border: 5px solid var(--bright);
background: var(--bright);
}
.brightc {
background: var(--bright);
}
.dim {
border: 5px solid var(--dim);
background: var(--dim);
}
.dimc {
background: var(--dim);
}