mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-12 00:30:11 +00:00
add individual member pages
This commit is contained in:
parent
1669946582
commit
3c82738025
12 changed files with 644 additions and 24 deletions
|
|
@ -3,6 +3,10 @@
|
|||
src: url('https://dl.dropboxusercontent.com/s/qfpakpjedhsrdb9/OpenDyslexicAlta-Regular.ttf');
|
||||
}
|
||||
|
||||
#root {
|
||||
z-index: -5;
|
||||
}
|
||||
|
||||
html {
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
|
|
@ -21,12 +25,21 @@ body {
|
|||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
background-color: $gray-200 !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
.dark-mode .card {
|
||||
color: $white;
|
||||
background-color: $gray-800;
|
||||
border: 1px solid #191c1f !important;
|
||||
}
|
||||
|
||||
.card-body {
|
||||
background-color: $white;
|
||||
}
|
||||
|
||||
.dark-mode .card-body {
|
||||
color: $white;
|
||||
background-color: $gray-800;
|
||||
|
|
@ -34,8 +47,8 @@ body {
|
|||
}
|
||||
|
||||
.dark-mode .card-header {
|
||||
color: $gray-100;
|
||||
background-color: $gray-900;
|
||||
color: $gray-100 !important;
|
||||
background-color: $gray-900 !important;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
|
|
@ -265,4 +278,36 @@ blockquote {
|
|||
width: auto;
|
||||
}
|
||||
|
||||
.backdrop {
|
||||
position:fixed;
|
||||
padding:0;
|
||||
margin:0;
|
||||
|
||||
top:0;
|
||||
left:0;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -4;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.backdrop-overlay {
|
||||
position:fixed;
|
||||
padding:0;
|
||||
margin:0;
|
||||
|
||||
top:0;
|
||||
left:0;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -3;
|
||||
background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
|
||||
}
|
||||
|
||||
.dark-mode .backdrop-overlay {
|
||||
background: linear-gradient(to bottom, rgba(52, 58, 64, 1) 0%, rgba(255, 255, 255, 0) 100%);
|
||||
}
|
||||
|
||||
@import "~bootstrap/scss/bootstrap";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue