-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1469 from goat-community/main
Added translation and service down page
- Loading branch information
Showing
4 changed files
with
92 additions
and
2 deletions.
There are no files selected for viewing
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
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,86 @@ | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Under Maintenance!</title> | ||
<style> | ||
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: "Poppins", sans-serif; | ||
} | ||
|
||
h2 { | ||
font-size: 10rem !important; | ||
font-weight: bold; | ||
color: #2bb381; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.container { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.content { | ||
text-align: center; | ||
margin: 3rem 0; | ||
} | ||
|
||
.content .main-heading { | ||
font-size: 2.5rem; | ||
font-weight: 700; | ||
} | ||
|
||
p { | ||
font-size: 1.3rem; | ||
padding: 0.7rem 0; | ||
} | ||
|
||
button { | ||
padding: 1rem; | ||
border-radius: 15px; | ||
outline: none; | ||
border: none; | ||
background: #2bb381; | ||
color: #fff; | ||
font-size: 1.3rem; | ||
cursor: pointer; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<h2> | ||
<img | ||
src="https://raw.githubusercontent.com/cinaaaa/reado/main/tools.webp" | ||
width="250" | ||
height="250" | ||
alt="tool" | ||
/> | ||
</h2> | ||
<div class="content"> | ||
<h1 class="main-heading">Under Maintenance!</h1> | ||
<p> | ||
Our services are currently under maintenance. We kindly ask you for your patience. Soon we will be online again. | ||
</p> | ||
<a href="https://plan4better.de/" target="blank"> | ||
<button>Back to PlanBetter</i></button> | ||
</a> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |
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
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