Font,countdown,image change
This commit is contained in:
parent
9af051f1bc
commit
8f16132d05
3 changed files with 9 additions and 9 deletions
BIN
src/curatain-min.jpeg
Normal file
BIN
src/curatain-min.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 428 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.5 MiB |
|
@ -12,11 +12,11 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id='starter'>press enter</div>
|
||||
<div id='starter'>please press enter to launch the store</div>
|
||||
<div id='scene'>
|
||||
<div id='curtain'>
|
||||
|
||||
<h1>You will be redirected to New Website</h1>
|
||||
<h1>Please wait while the store is being provisioned</h1>
|
||||
<h1 id="countdown">10</h1>
|
||||
|
||||
<div class='left'></div>
|
||||
|
@ -25,8 +25,8 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||
|
||||
</div>
|
||||
<style>
|
||||
@import url("https://fonts.googleapis.com/css?family=Open+Sans:800|Roboto+Condensed:700i");
|
||||
|
||||
/* @import url("https://fonts.googleapis.com/css?family=Open+Sans:800|Roboto+Condensed:700i"); */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Sevillana&display=swap');
|
||||
body {
|
||||
width: 100%;
|
||||
min-height: 600px;
|
||||
|
@ -47,8 +47,8 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||
margin-top: -25px;
|
||||
margin-left: -150px;
|
||||
text-align: center;
|
||||
font-family: 'Roboto Condensed', sans-serif;
|
||||
font-size: 2em;
|
||||
font-family: "Sevillana", cursive;
|
||||
font-size: 3em;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
@ -79,7 +79,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||
width: 50%;
|
||||
height: 100%;
|
||||
filter: brightness(180%);
|
||||
background-image: url("./curtain.jpeg");
|
||||
background-image: url("./curatain-min.jpeg");
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
@ -114,7 +114,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||
/* margin-top: -90px;
|
||||
margin-left: -50px; */
|
||||
text-align: center;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
font-family: "Sevillana", cursive;
|
||||
font-size: 10em;
|
||||
color: #FFD700;
|
||||
transform: scale(0.5);
|
||||
|
@ -302,7 +302,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||
}
|
||||
|
||||
function startCountdown() {
|
||||
var count = 10;
|
||||
var count = 5;
|
||||
var countdownElement = document.getElementById("countdown");
|
||||
var countdownInterval = setInterval(function() {
|
||||
count--;
|
||||
|
|
Loading…
Reference in a new issue