You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
f79eaf1185
This commit will improve ReZygisk webui state by adding new red color and hide settings/modules card if it's error or not exist
67 lines
885 B
CSS
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);
|
|
} |