-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
1,695 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// Infotext Funktion | ||
|
||
function showPopup() { | ||
alert("Es gibt momentan 40 verschiedene Fragen, aber keine Sorge es kommen noch viele weitere dazu. Coming soon ..."); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,291 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900'); | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: 'Poppins', sans-serif; | ||
} | ||
|
||
body { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
text-align: center; | ||
min-height: 100vh; | ||
user-select: none; | ||
background-color: #26282b; | ||
color: #fff; | ||
} | ||
|
||
body::-webkit-scrollbar { | ||
width: 12px; | ||
} | ||
|
||
body::-webkit-scrollbar-track { | ||
background: #26282b; | ||
} | ||
|
||
body::-webkit-scrollbar-thumb { | ||
background-color: #ffffff; | ||
border-radius: 20px; | ||
border: 4px solid #26282b; | ||
} | ||
|
||
header { | ||
background-color: #003a1e; | ||
color: #fff; | ||
text-align: start; | ||
padding: 16px 100px; | ||
font-size: 24px; | ||
position: fixed; | ||
left: 0; | ||
right: 0; | ||
top: 0; | ||
opacity: 0.8; | ||
} | ||
|
||
header:hover { | ||
opacity: 1; | ||
} | ||
|
||
header p { | ||
position: start; | ||
text-align: start; | ||
} | ||
|
||
#headerinput { | ||
transition: 0.5s; | ||
margin-top: -40px; | ||
display: flex; | ||
justify-content: end; | ||
align-items: flex-end; | ||
text-align: end; | ||
} | ||
|
||
#headerinput a button { | ||
transition: 0.5s; | ||
cursor: pointer; | ||
} | ||
|
||
#deutschlernapphintergrund { | ||
background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url(/bilder/ubodigat.com\ deutschlernapp\ Hintergrund.jpg); | ||
background-size: cover; | ||
background-attachment: fixed; | ||
background-position: center; | ||
} | ||
|
||
#überschriftlink { | ||
text-decoration: none; | ||
color: #fff; | ||
} | ||
|
||
.button { | ||
transition: 0.5s; | ||
background-color: #012f6b; | ||
color: #fff; | ||
text-decoration: none; | ||
border: unset; | ||
padding: 12px; | ||
border-radius: 7px; | ||
min-width: 160px; | ||
font-weight: 600; | ||
margin-left: 10px; | ||
box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%); | ||
} | ||
|
||
.button:hover { | ||
transition: 0.5s; | ||
background-color: #006eff; | ||
color: #003a1e; | ||
font-weight: 800; | ||
} | ||
|
||
.button a { | ||
transition: 0.5s; | ||
color: #fff; | ||
text-decoration: none; | ||
} | ||
|
||
|
||
/* Ab hier kein Grundcss code mehr*/ | ||
|
||
.container { | ||
max-width: 600px; | ||
border-radius: 10px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
background-color: #333333; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.title { | ||
text-align: center; | ||
} | ||
|
||
.question, | ||
.answer-input { | ||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | ||
margin-bottom: 10px; | ||
font-size: 25px; | ||
} | ||
|
||
.action-button { | ||
transition: 0.5s; | ||
display: block; | ||
width: 50%; | ||
margin-left: 25%; | ||
padding: 10px; | ||
background-color: #4CAF50; | ||
color: #fff; | ||
border: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
} | ||
|
||
.action-button:hover { | ||
transition: 0.5s; | ||
display: block; | ||
width: 50%; | ||
margin-left: 25%; | ||
padding: 10px; | ||
background-color: #00ff0d; | ||
color: #575757; | ||
border: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
} | ||
|
||
.result { | ||
font-weight: bold; | ||
margin-bottom: 10px; | ||
} | ||
|
||
input { | ||
transition: 0.5s; | ||
margin-bottom: 30px; | ||
border: 0; | ||
outline: 0; | ||
border-bottom: 2px solid rgb(12, 85, 43); | ||
padding: 5px; | ||
text-align: center; | ||
color: #ffff; | ||
background: transparent; | ||
cursor: text; | ||
font-size: 23px; | ||
border-bottom-right-radius: 5px 5px; | ||
border-bottom-left-radius: 5px 5px; | ||
} | ||
|
||
input:hover { | ||
transition: 0.5s; | ||
text-align: center; | ||
border: 0; | ||
outline: 0; | ||
border-bottom: 3px solid #00ff6a; | ||
} | ||
|
||
input:focus { | ||
transition: 0.5s; | ||
border: 0; | ||
outline: 0; | ||
border-bottom: 3px solid #00ff6a; | ||
} | ||
|
||
|
||
/*Responsive header*/ | ||
|
||
@media (max-width: 960px) { | ||
#headerinput a { | ||
margin-top: 50px; | ||
} | ||
} | ||
|
||
@media (max-width: 680px) { | ||
#headerinput a { | ||
margin-top: 50px; | ||
} | ||
} | ||
|
||
@media (max-width: 600px) { | ||
#headerinput a { | ||
margin-left: 40px; | ||
margin-right: -40px; | ||
} | ||
} | ||
|
||
@media (max-width: 560px) { | ||
#headerinput a { | ||
margin-left: 65px; | ||
margin-right: -65px; | ||
} | ||
} | ||
|
||
@media (max-width: 540px) { | ||
header p a { | ||
margin-left: -70px; | ||
} | ||
#headerinput { | ||
display: flex; | ||
margin-top: -85px; | ||
margin-bottom: 0px; | ||
} | ||
#headerinput a button { | ||
font-size: 10px; | ||
margin-top: 40px; | ||
margin-left: 900px; | ||
padding: 10px; | ||
min-width: 100px; | ||
font-weight: 600; | ||
margin-left: 5px; | ||
} | ||
} | ||
|
||
@media (max-width: 400px) { | ||
nav header div { | ||
margin-bottom: 10px; | ||
} | ||
header p a { | ||
margin-left: -70px; | ||
} | ||
#headerinput { | ||
display: flex; | ||
margin-top: -80px; | ||
margin-bottom: 0px; | ||
} | ||
#headerinput a button { | ||
font-size: 10px; | ||
margin-top: 40px; | ||
margin-left: 900px; | ||
padding: 10px; | ||
min-width: 100px; | ||
font-weight: 600; | ||
margin-left: 5px; | ||
} | ||
} | ||
|
||
@media (max-width: 350px) { | ||
nav header div { | ||
margin-bottom: 10px; | ||
} | ||
header p a { | ||
margin-left: -70px; | ||
} | ||
#headerinput { | ||
display: flex; | ||
margin-top: -80px; | ||
margin-bottom: 0px; | ||
} | ||
#headerinput a { | ||
margin-left: 80px; | ||
margin-right: -80px; | ||
} | ||
#headerinput a button { | ||
font-size: 10px; | ||
margin-top: 40px; | ||
margin-left: 900px; | ||
padding: 10px; | ||
min-width: 100px; | ||
font-weight: 600; | ||
margin-left: 5px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<!DOCTYPE html> | ||
<html lang="de"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="verify-v1" content="unique-string"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="keywords" content="website, lernapp, rechner, uhr, snake, description, beschreibung, u, bodigat, u:bodigat, ubodigat"> | ||
<meta name="author" content="U:Bodigat"> | ||
<meta name="publisher" content="U:Bodigat"> | ||
<meta name="copyright" content="U:Bodigat"> | ||
<meta name="description" content="Dieser Text befindet sich noch in Arbeit."> | ||
<meta property="og:site_name" content="U:Bodigat.com"> | ||
<meta property="og:url" content="https://ubodigat.com"> | ||
<meta property="og:title" content="Deutsch | ubodigat.com"> | ||
<meta property="og:type" content="website"> | ||
<meta property="og:description" content="Dieser Text befindet sich noch in Arbeit."> | ||
<meta property="og:image" content="https://cdn.discordapp.com/attachments/1068905447848943697/1161784440004022363/ubodigat_logo_breit_transparent_neutral.png?ex=65398f13&is=65271a13&hm=8bd1f6d65ee3d677dc79e1b8e6d58d7a292f9f88fa9816c01d0535a6d482cd9a&"> | ||
<meta property="og:image:secure_url" content="https://cdn.discordapp.com/attachments/1068905447848943697/1161784440004022363/ubodigat_logo_breit_transparent_neutral.png?ex=65398f13&is=65271a13&hm=8bd1f6d65ee3d677dc79e1b8e6d58d7a292f9f88fa9816c01d0535a6d482cd9a&"> | ||
<meta property="og:image:width" content="1000"> | ||
<meta property="og:image:height" content="500"> | ||
<meta property="twitter:card" content="summary_large_image"> | ||
<meta property="twitter:url" content="https://ubodigat.com"> | ||
<meta property="twitter:title" content="Deutsch | ubodigat.com"> | ||
<meta property="twitter:description" content="Dieser Text befindet sich noch in Arbeit."> | ||
<meta property="twitter:image" content="https://cdn.discordapp.com/attachments/1068905447848943697/1161784440004022363/ubodigat_logo_breit_transparent_neutral.png?ex=65398f13&is=65271a13&hm=8bd1f6d65ee3d677dc79e1b8e6d58d7a292f9f88fa9816c01d0535a6d482cd9a&"> | ||
<title>Deutsch | ubodigat.com</title> | ||
<link rel="stylesheet" href="/style.css"> | ||
<link rel="icon" href="/bilder/Wartungsarbeitenprofilbild.png" type="image/x-icon"> | ||
<link rel="apple-touch-icon" href="https://ubodigat.com/bilder/Wartungsarbeitenprofilbild.png" /> | ||
<script src="/script.js"></script> | ||
<!-- Google tag (gtag.js) --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BE1B5EZY35"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
|
||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-BE1B5EZY35'); | ||
</script> | ||
<!-- Google Tag Manager --> | ||
<script> | ||
(function(w, d, s, l, i) { | ||
w[l] = w[l] || []; | ||
w[l].push({ | ||
'gtm.start': new Date().getTime(), | ||
event: 'gtm.js' | ||
}); | ||
var f = d.getElementsByTagName(s)[0], | ||
j = d.createElement(s), | ||
dl = l != 'dataLayer' ? '&l=' + l : ''; | ||
j.async = true; | ||
j.src = | ||
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; | ||
f.parentNode.insertBefore(j, f); | ||
})(window, document, 'script', 'dataLayer', 'GTM-WTDQC48'); | ||
</script> | ||
<!-- End Google Tag Manager --> | ||
</head> | ||
|
||
<body id="Hintergrundmenü"> | ||
<!-- Google Tag Manager (noscript) --> | ||
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WTDQC48" | ||
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> | ||
<!-- End Google Tag Manager (noscript) --> | ||
<nav> | ||
<header> | ||
<p><a id="überschriftlink" href="https://ubodigat.com">U:Bodigat.com</a> | Deutsch</p> | ||
<div id="headerinput"> | ||
<a href="https://ubodigat.com/datenschutz" target="_blank"> <button class="button">Datenschutz</button></a> | ||
<a href="https://ubodigat.com/lerntools/sprachen/"> <button class="button">Zur Sprachauswahl</button></a> | ||
</div> | ||
</header> | ||
</nav> | ||
|
||
<div> | ||
<table id="menütabelle"> | ||
<tr> | ||
<td id="erstetabellenmenüpunkt"> | ||
<a href="/lerntools/sprachen/deutsch/deutschLernapp/">Deutsch-Lernapp</a> | ||
</td> | ||
<td> | ||
<a href="/lerntools/sprachen/deutsch/sprachlernapp/">Deutsch Sprachlernapp</a> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
|
||
</body> | ||
|
||
</html> |
Oops, something went wrong.