meow OwO
This commit is contained in:
parent
0d3a4db8be
commit
507f6b50ca
|
@ -12,6 +12,12 @@
|
||||||
<link rel="icon" href="/static/svg/favicon.svg">
|
<link rel="icon" href="/static/svg/favicon.svg">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
<noscript>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="refresh" content="0; url=/login"/>
|
||||||
|
</head>
|
||||||
|
</noscript>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="topBar">
|
<div class="topBar">
|
||||||
<p tabindex="0" class="logo" id="burgerButton">Burgernotes</p>
|
<p tabindex="0" class="logo" id="burgerButton">Burgernotes</p>
|
||||||
|
|
|
@ -15,6 +15,15 @@
|
||||||
<p class="credit"></p>
|
<p class="credit"></p>
|
||||||
<img src="/static/img/background.jpg" class="background" alt="">
|
<img src="/static/img/background.jpg" class="background" alt="">
|
||||||
<div class="inoutdiv">
|
<div class="inoutdiv">
|
||||||
|
<noscript>
|
||||||
|
<h2 style="display: block !important;">Your web browser is unsupported</h2>
|
||||||
|
<p style="margin-bottom: 135px;">Please enable JavaScript in your web browser to continue</p>
|
||||||
|
<style>
|
||||||
|
h2, button, br {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</noscript>
|
||||||
<h2>Sign in</h2>
|
<h2>Sign in</h2>
|
||||||
<p id="statusBox"></p>
|
<p id="statusBox"></p>
|
||||||
<span id="inputNameBox" style="margin-right: 10px;color: var(--text-color);"></span>
|
<span id="inputNameBox" style="margin-right: 10px;color: var(--text-color);"></span>
|
||||||
|
|
|
@ -670,7 +670,6 @@ iframe#markdown {
|
||||||
background-color: var(--hover-nonimportant-theme-color);
|
background-color: var(--hover-nonimportant-theme-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.inoutdiv a {
|
.inoutdiv a {
|
||||||
color: grey;
|
color: grey;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -683,6 +682,12 @@ iframe#markdown {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
object-fit: cover;
|
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
.credit {
|
.credit {
|
||||||
|
|
Reference in New Issue