2024-04-26 21:12:56 +01:00
|
|
|
@import url("../fonts/inter.css");
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--invertdm: 0%;
|
|
|
|
--text-color: #000000;
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
--editor: #ffffff;
|
2024-04-26 21:12:56 +01:00
|
|
|
--border-color: #dadada;
|
2024-07-26 19:25:41 +01:00
|
|
|
--theme-color: #1c71d8;
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
--hover-theme-color: #4990e7;
|
2024-07-26 19:25:41 +01:00
|
|
|
--nonimporant-theme-color: #EBEBEB;
|
|
|
|
--hover-nonimportant-theme-color: #dbdbdb;
|
|
|
|
--nonimportant-text-color: #000;
|
|
|
|
--inoutdiv: #fafafa;
|
2024-04-26 21:12:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* dark mode */
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
:root {
|
2024-05-16 17:58:11 +01:00
|
|
|
--invertdm: 100%;
|
2024-07-26 19:25:41 +01:00
|
|
|
--inoutdiv: #2d2f31;
|
2024-04-26 21:12:56 +01:00
|
|
|
--text-color: #ffffff;
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
--editor: #1E1E1E;
|
2024-07-26 19:25:41 +01:00
|
|
|
--nonimportant-text-color: #fff;
|
2024-04-26 21:12:56 +01:00
|
|
|
--border-color: #393b3d;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inoutdiv p {
|
|
|
|
color: white !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inoutdiv a {
|
|
|
|
color: #969696 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inoutdiv input {
|
|
|
|
color: white;
|
|
|
|
background-color: var(--editor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p,
|
|
|
|
li,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
color: var(--text-color);
|
|
|
|
white-space: break-spaces;
|
|
|
|
}
|
|
|
|
|
2024-07-26 19:25:41 +01:00
|
|
|
p#status {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2024-04-26 21:12:56 +01:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
background-color: var(--editor);
|
|
|
|
font-family: "Inter", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sign up/log in div */
|
|
|
|
|
|
|
|
.inoutdiv {
|
|
|
|
border-radius: 8px;
|
|
|
|
margin: 10%;
|
|
|
|
padding: 30px;
|
|
|
|
border: solid 1px var(--border-color);
|
2024-07-26 19:25:41 +01:00
|
|
|
background-color: var(--inoutdiv);
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
border-spacing: 0;
|
2024-04-26 21:12:56 +01:00
|
|
|
}
|
|
|
|
|
2024-05-16 19:09:47 +01:00
|
|
|
input {
|
2024-07-26 19:25:41 +01:00
|
|
|
width: calc(100% - 35px);
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
2024-04-26 21:12:56 +01:00
|
|
|
height: 30px;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
|
|
|
|
border: solid;
|
|
|
|
border-color: var(--border-color);
|
|
|
|
border-width: 1px;
|
|
|
|
border-radius: 8px;
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
min-width: 20px;
|
|
|
|
}
|
2024-04-26 21:12:56 +01:00
|
|
|
|
2024-07-26 19:25:41 +01:00
|
|
|
.inputBox input {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
body {
|
2024-07-26 19:25:41 +01:00
|
|
|
background-color: var(--inoutdiv);
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
}
|
|
|
|
.inoutdiv {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2024-07-26 19:25:41 +01:00
|
|
|
left: 10px;
|
|
|
|
right: 10px;
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
border-radius: 0;
|
2024-07-26 19:25:41 +01:00
|
|
|
min-width: calc(100% - 20px);
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
min-height: 100%;
|
|
|
|
transform: none;
|
|
|
|
padding: 5px;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: auto;
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.inoutdiv p {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.inoutdiv h2 {
|
|
|
|
font-size: 21px;
|
|
|
|
}
|
|
|
|
.background {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.inoutdiv input {
|
|
|
|
width: calc(100% - 32px);
|
|
|
|
}
|
2024-04-26 21:12:56 +01:00
|
|
|
}
|
|
|
|
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
.inoutdiv img {
|
|
|
|
min-width: 200px;
|
|
|
|
max-width: 100%;
|
|
|
|
border-radius: 20px;
|
|
|
|
background-color: white;
|
2024-04-26 21:12:56 +01:00
|
|
|
}
|
|
|
|
|
2024-05-16 17:58:11 +01:00
|
|
|
.iframe {
|
|
|
|
position: fixed;
|
2024-05-18 00:51:36 +01:00
|
|
|
right: 5px;
|
|
|
|
top: 47px;
|
2024-05-16 17:58:11 +01:00
|
|
|
border: none;
|
2024-07-26 19:25:41 +01:00
|
|
|
height: 278px;
|
2024-05-16 17:58:11 +01:00
|
|
|
width: 400px;
|
|
|
|
transform: translateX(26px);
|
2024-04-26 21:12:56 +01:00
|
|
|
}
|
|
|
|
|
2024-05-16 17:58:11 +01:00
|
|
|
.acctbutton {
|
2024-04-26 21:12:56 +01:00
|
|
|
position: fixed;
|
2024-05-18 00:51:36 +01:00
|
|
|
right: 5px;
|
2024-05-16 17:58:11 +01:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
margin-top: 30px;
|
2024-04-26 21:12:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.credit {
|
|
|
|
position: fixed;
|
|
|
|
left: 5px;
|
|
|
|
color: white;
|
|
|
|
z-index: -1;
|
|
|
|
margin: 0;
|
|
|
|
bottom: 5px;
|
2024-05-16 17:58:11 +01:00
|
|
|
text-shadow: black 1px 1px 5px;
|
|
|
|
}
|
|
|
|
|
2024-07-26 19:25:41 +01:00
|
|
|
.newoauth, .oauthlist, .sessionentry, .oauthentry {
|
2024-05-16 17:58:11 +01:00
|
|
|
text-align: center;
|
|
|
|
width: calc(100% - 17.5vh);
|
|
|
|
margin-top: 7vh;
|
|
|
|
margin-left: 7vh;
|
|
|
|
margin-right: 7vh;
|
|
|
|
padding: 15px 10px 30px;
|
|
|
|
border-style: solid;
|
|
|
|
border-image: none;
|
|
|
|
border-radius: 8px;
|
|
|
|
border-width: 1px;
|
|
|
|
font-size: 17px;
|
2024-07-26 19:25:41 +01:00
|
|
|
background-color: var(--inoutdiv);
|
2024-05-16 17:58:11 +01:00
|
|
|
border-color: var(--border-color);
|
|
|
|
}
|
|
|
|
|
2024-07-26 19:25:41 +01:00
|
|
|
.oauthentry, .sessionentry {
|
2024-05-16 17:58:11 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 5px;
|
2024-07-26 19:25:41 +01:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 20px;
|
2024-05-16 17:58:11 +01:00
|
|
|
}
|
|
|
|
|
2024-07-26 19:25:41 +01:00
|
|
|
.oauthentry button, .sessionentry button {
|
2024-05-16 17:58:11 +01:00
|
|
|
padding: 10px;
|
|
|
|
background-color: red;
|
|
|
|
color: white
|
|
|
|
}
|
|
|
|
|
2024-07-26 19:25:41 +01:00
|
|
|
.oauthentry button:hover, .sessionentry button:hover {
|
2024-05-16 17:58:11 +01:00
|
|
|
background-color: black;
|
|
|
|
}
|
|
|
|
|
2024-07-26 19:25:41 +01:00
|
|
|
.oauthentry img, .sessionentry img {
|
|
|
|
max-height: 64px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2024-05-16 17:58:11 +01:00
|
|
|
button {
|
|
|
|
background-color: var(--theme-color);
|
|
|
|
color: white;
|
|
|
|
margin-right: 5px;
|
2024-07-26 19:25:41 +01:00
|
|
|
padding: 10px 20px;
|
2024-05-16 17:58:11 +01:00
|
|
|
border: none;
|
2024-07-26 19:25:41 +01:00
|
|
|
border-radius: 25px;
|
2024-05-16 17:58:11 +01:00
|
|
|
font-size: 14px;
|
2024-07-26 19:25:41 +01:00
|
|
|
transition: 0.125s;
|
2024-05-16 17:58:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
background-color: var(--hover-theme-color);
|
|
|
|
transition: all 0.3s ease 0s;
|
|
|
|
}
|
|
|
|
|
2024-07-26 19:25:41 +01:00
|
|
|
.inoutdiv .inputContainer {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
margin-right: 20px;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inoutdiv .inputBox {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
.unimportant {
|
2024-07-26 19:25:41 +01:00
|
|
|
background-color: var(--nonimporant-theme-color);
|
|
|
|
color: var(--nonimportant-text-color) !important;
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.unimportant:hover {
|
|
|
|
background-color: var(--hover-nonimportant-theme-color);
|
2024-05-16 17:58:11 +01:00
|
|
|
transition: all 0.3s ease 0s;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
display: block;
|
|
|
|
margin-top: 20px;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inoutdiv a {
|
|
|
|
color: grey;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.background {
|
|
|
|
position: fixed;
|
|
|
|
z-index: -2;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
-webkit-user-drag: none;
|
|
|
|
user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
pointer-events: none;
|
2024-04-26 21:12:56 +01:00
|
|
|
}
|
|
|
|
|
2024-07-26 19:25:41 +01:00
|
|
|
.vAlign {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2024-04-26 21:12:56 +01:00
|
|
|
.hidden {
|
|
|
|
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;
|
|
|
|
}
|