html #2200
Unanswered
PRANAVSAISRI
asked this question in
Q&A
html
#2200
Replies: 1 comment
-
⽕ in your butt?? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
<!doctype html>
| <html dir="ltr" lang="en" class="loading"
<title>Settings</title> <style> html { overflow: hidden; /* Remove 300ms delay for 'click' event, when using touch interface. */ touch-action: manipulation; }| >
|
|
|
| <title>Settings</title>
|
|
| <style>
| html {
| overflow: hidden;
| /* Remove 300ms delay for 'click' event, when using touch interface. */
| touch-action: manipulation;
| }
|
| @media (prefers-color-scheme: dark) {
| html {
| background: var(--md-background-color);
| }
| }
|
| html.loading::before {
| background-color: var(--md-toolbar-color);
| border-bottom: var(--md-toolbar-border);
| box-sizing: border-box;
| content: '';
| display: block;
| height: var(--md-toolbar-height);
| }
|
| html,
| body {
| height: 100%;
| margin: 0;
| }
| </style>
|
|
|
| <script type="module" src="settings.js"></script>
|
|
| </html
Beta Was this translation helpful? Give feedback.
All reactions