-
Notifications
You must be signed in to change notification settings - Fork 5
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
4 changed files
with
48 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta name="robots" content="noindex" /> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | ||
<title>7th Cavalry Apps</title> | ||
</head> | ||
|
||
<head> | ||
<meta name="robots" content="noindex"> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | ||
<title>7th Cavalry Apps</title> | ||
</head> | ||
|
||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
</body> | ||
|
||
</html> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,45 @@ | ||
.masterbox { | ||
height: 100vh; | ||
width: 100vw; | ||
height: 100vh; | ||
width: 100vw; | ||
} | ||
|
||
.logobox { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding-top: 10%; | ||
padding-bottom: 5em; | ||
animation: logoboxanim 5s infinite linear; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding-top: 10%; | ||
padding-bottom: 5em; | ||
animation: logoboxanim 5s infinite linear; | ||
} | ||
|
||
|
||
|
||
@keyframes logoboxanim { | ||
50% { | ||
transform: translateY(20px); | ||
} | ||
50% { | ||
transform: translateY(20px); | ||
} | ||
|
||
100% { | ||
transform: translateY(0px); | ||
} | ||
100% { | ||
transform: translateY(0px); | ||
} | ||
} | ||
|
||
|
||
.buttonbox { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.button { | ||
background-color: #f9cc17; | ||
border: none; | ||
color: black; | ||
text-align: center; | ||
display: inline-block; | ||
font-family: "Roboto", "Segoe UI", "Times New Roman"; | ||
font-weight: bold; | ||
font-size: 12px; | ||
cursor: pointer; | ||
border-radius: 0.5em; | ||
padding: 1em; | ||
margin-right: 0.25em; | ||
margin-left: 0.25em; | ||
|
||
} | ||
background-color: #f9cc17; | ||
border: none; | ||
color: black; | ||
text-align: center; | ||
display: inline-block; | ||
font-family: "Roboto", "Segoe UI", "Times New Roman"; | ||
font-weight: bold; | ||
font-size: 12px; | ||
cursor: pointer; | ||
border-radius: 0.5em; | ||
padding: 1em; | ||
margin-right: 0.25em; | ||
margin-left: 0.25em; | ||
} |
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