Tidied up the CSS files, made the delete account button red
Signed-off-by: arzumify <jliwin98@danwin1210.de>
This commit is contained in:
parent
28003d7093
commit
5910a61f19
|
@ -6,16 +6,13 @@
|
||||||
|
|
||||||
html {
|
html {
|
||||||
background: linear-gradient(to top left, rgb(217, 236, 255), rgb(228, 249, 255), rgb(221, 255, 238), rgb(249,255,253)) no-repeat center center fixed;
|
background: linear-gradient(to top left, rgb(217, 236, 255), rgb(228, 249, 255), rgb(221, 255, 238), rgb(249,255,253)) no-repeat center center fixed;
|
||||||
-webkit-background-size: cover;
|
|
||||||
-moz-background-size: cover;
|
|
||||||
-o-background-size: cover;
|
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--invertdm: 0%;
|
--invertdm: 0%;
|
||||||
--text-color: #000000;
|
--text-color: #000;
|
||||||
--background: #ffffff;
|
--background: #fff;
|
||||||
--border-color: #dadada;
|
--border-color: #dadada;
|
||||||
--theme-color: #1c71d8;
|
--theme-color: #1c71d8;
|
||||||
--hover-theme-color: #4990e7;
|
--hover-theme-color: #4990e7;
|
||||||
|
@ -23,9 +20,9 @@ html {
|
||||||
--hover-nonimportant-theme-color: #dbdbdb;
|
--hover-nonimportant-theme-color: #dbdbdb;
|
||||||
--nonimportant-text-color: #000;
|
--nonimportant-text-color: #000;
|
||||||
--inOutDiv: #fafafa;
|
--inOutDiv: #fafafa;
|
||||||
--disabled: lightgray;
|
--disabled: #d3d3d3;
|
||||||
--disabled-hover: #a2a0a0;
|
--disabled-hover: #a2a0a0;
|
||||||
--disabled-text-color: gray;
|
--disabled-text-color: #808080;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* dark mode */
|
/* dark mode */
|
||||||
|
@ -34,7 +31,7 @@ html {
|
||||||
:root {
|
:root {
|
||||||
--invertdm: 100%;
|
--invertdm: 100%;
|
||||||
--inOutDiv: #2d2f31;
|
--inOutDiv: #2d2f31;
|
||||||
--text-color: #ffffff;
|
--text-color: #fff;
|
||||||
--background: #1E1E1E;
|
--background: #1E1E1E;
|
||||||
--nonimporant-theme-color: #8E8E8E;
|
--nonimporant-theme-color: #8E8E8E;
|
||||||
--nonimportant-text-color: #fff;
|
--nonimportant-text-color: #fff;
|
||||||
|
@ -56,16 +53,7 @@ html {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p,
|
p, li, h1, h2, h3, h4, h5, span, h6 {
|
||||||
li,
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
span,
|
|
||||||
text,
|
|
||||||
h6 {
|
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
white-space: break-spaces;
|
white-space: break-spaces;
|
||||||
}
|
}
|
||||||
|
@ -121,7 +109,6 @@ input {
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputBox .captchaDiv button {
|
.inputBox .captchaDiv button {
|
||||||
background-color: var(--background);
|
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
border-right: 1px solid var(--border-color);
|
border-right: 1px solid var(--border-color);
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
@ -232,11 +219,14 @@ input {
|
||||||
|
|
||||||
.oauthEntry button, .sessionEntry button {
|
.oauthEntry button, .sessionEntry button {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.oauthEntry button, .sessionEntry button, #deleteAccountButton {
|
||||||
background-color: red;
|
background-color: red;
|
||||||
color: white
|
color: white
|
||||||
}
|
}
|
||||||
|
|
||||||
.oauthEntry button:hover, .sessionEntry button:hover {
|
.oauthEntry button:hover, .sessionEntry button:hover, #deleteAccountButton:hover {
|
||||||
background-color: black;
|
background-color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -314,42 +304,6 @@ h2 {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.w100 {
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
|
|
||||||
.w200 {
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
|
|
||||||
.w300 {
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
|
|
||||||
.w400 {
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
.w500 {
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.w600 {
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.w700 {
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
|
|
||||||
.w800 {
|
|
||||||
font-weight: 800;
|
|
||||||
}
|
|
||||||
|
|
||||||
.w900 {
|
|
||||||
font-weight: 900;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* swipe animation */
|
/* swipe animation */
|
||||||
.swipe {
|
.swipe {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
|
Loading…
Reference in New Issue