-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AriaDashboard: introduce Steam Spring Sale 2024 variant
- Loading branch information
Showing
6 changed files
with
94 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE html> | ||
<html class="max-width max-height"> | ||
|
||
<head> | ||
<title>AriaDashboard</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta charset="UTF-8"> | ||
|
||
<link rel="stylesheet" href="./../../src/css/base.css"> | ||
<link rel="stylesheet" href="./../../src/css/fonts/font.css"> | ||
<link rel="stylesheet" href="./src/css/index.css"> | ||
|
||
<script src="./src/js/index.js"></script> | ||
<script src="./../../src/js/components/clock.js"></script> | ||
<script src="./../../src/js/components/fullscreen.js"></script> | ||
|
||
</head> | ||
|
||
<body id="hero-parent" onload="earlyInit()"> | ||
<video id="bg-loop" src="./src/media/webm_page_bg_english.webm" autoplay muted loop class="no-cursor"></video> | ||
<div id="clock-parent" class="clock no-cursor"> | ||
<div id="clock-time-full"> | ||
Tue, 16 Mar 2023 19:52:45 GMT | ||
</div> | ||
<div id="clock-time"> | ||
10:45 | ||
</div> | ||
</div> | ||
<footer class="no-cursor"> | ||
neko.casa, 2024 | ||
<!-- <a href="https://github.com/leewp14/AriaDashboard">neko.casa</a>, 2024 --> | ||
</footer> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
|
||
:root { | ||
--var-bg-shadow: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.2)); | ||
--var-bg-url: url('./../media/natsuki-nakagawa.webp'); | ||
} | ||
|
||
body { | ||
/* background: url('./../media/sale_spring2024_tiled_bg.png'); */ | ||
background-image: var(--var-bg-shadow), var(--var-bg-url); | ||
background-size: cover; | ||
background-position: center bottom; | ||
} | ||
|
||
video#bg-loop { | ||
width: 90%; | ||
margin: auto; | ||
z-index: -1; | ||
display: block; | ||
opacity: .9; | ||
} | ||
|
||
div#clock-parent { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
color: wheat; | ||
text-shadow: 0 0 5rem #9fd5cd; | ||
opacity: .8; | ||
|
||
padding-top: 3rem; | ||
} | ||
|
||
.clock #clock-time-full{ | ||
font-size: 1rem; | ||
font-family: 'IBM Plex Mono Thin', 'IBM Plex Mono'; | ||
font-weight: 100; | ||
} | ||
|
||
.clock #clock-time{ | ||
font-size: 5rem; | ||
font-family: 'IBM Plex Sans Thin', 'IBM Plex Sans'; | ||
font-weight: 100; | ||
} | ||
|
||
footer { | ||
position: fixed; | ||
bottom: 0; | ||
text-align: center; | ||
left: 0; | ||
right: 0; | ||
padding: .8rem 0; | ||
opacity: .6; | ||
} |
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 @@ | ||
|
||
function earlyInit(){ | ||
clockService(); | ||
fullScreenService(); | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.