feature/dark-mode #13

Merged
manuel merged 5 commits from feature/dark-mode into main 2024-01-28 03:10:41 +01:00
2 changed files with 16 additions and 5 deletions
Showing only changes of commit 361badecd2 - Show all commits

View file

@ -11,12 +11,12 @@
</head>
<body>
<h1>Convert it all</h1>
<noscript>This webpage lets you convert data and text to and from various formats. But
it requires you to <strong>enable Javascript</strong> to do so. So please turn it on in your
Browser. You won't regret it!
<noscript class="noscript">
This webpage lets you convert data and text to and from various formats. But it requires you to <strong>enable
Javascript</strong> to do so. So please turn it on in your Browser. You won't regret it!
</noscript>
<app-root>
<div class="apploader">Please hold on, we're starting the turbines ...</div>
<div class="app_loader">Please hold on, we're starting the turbines ...</div>
</app-root>
</body>
</html>

View file

@ -30,6 +30,17 @@ h1 {
text-align: center;
}
.apploader {
.noscript {
border: 0.1em solid red;
border-radius: 1em;
display: block;
margin: 2em;
font-size: x-large;
padding: 1.5em;
text-align: center;
}
.app_loader {
margin: 2em;
text-align: center;
}