make offline.html use tabs instead of spaces

pull/24/head
Aevann1 2022-11-26 04:29:40 +02:00 committed by geese_suck
parent 3e53295516
commit 79d26e130b
Signed by: geese_suck
GPG Key ID: 4D09E4B0A7264746
1 changed files with 52 additions and 52 deletions

View File

@ -1,66 +1,66 @@
<head> <head>
<title>No Internet Connection</title> <title>No Internet Connection</title>
<style> <style>
:root { :root {
--background: #123; --background: #123;
--primary: #238dcf; --primary: #238dcf;
} }
body { body {
background: var(--background); background: var(--background);
} }
.center { .center {
position: absolute; position: absolute;
left: 50%; left: 50%;
top: 50%; top: 50%;
-webkit-transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
} }
.center-text { .center-text {
text-align: center; text-align: center;
} }
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
color: white; color: white;
font-family: sans-serif; font-family: sans-serif;
} }
.text-muted { .text-muted {
color: #6c757d; color: #6c757d;
} }
[role=button] { [role=button] {
cursor: pointer!important; cursor: pointer!important;
} }
.button { .button {
background-color: var(--background)!important; background-color: var(--background)!important;
background: 0 0; background: 0 0;
font-weight: 600; font-weight: 600;
font-size: 1rem; font-size: 1rem;
border-radius: 0.2rem; border-radius: 0.2rem;
display: inline-block; display: inline-block;
text-align: center; text-align: center;
vertical-align: middle; vertical-align: middle;
cursor: pointer; cursor: pointer;
user-select: none; user-select: none;
background-color: transparent; background-color: transparent;
border: 1px solid transparent; border: 1px solid transparent;
padding: 0.375rem 0.75rem; padding: 0.375rem 0.75rem;
font-size: 1rem; font-size: 1rem;
line-height: 1.5; line-height: 1.5;
border-radius: 0.35rem; border-radius: 0.35rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
color: #fff; color: #fff;
background-color: var(--primary); background-color: var(--primary);
border-color: var(--primary); border-color: var(--primary);
} }
.button:hover { .button:hover {
color: var(--primary); color: var(--primary);
} }
</style> </style>
</head> </head>
<body> <body>