Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Algorithm authored Feb 16, 2024
1 parent 9536ea8 commit 94813a8
Show file tree
Hide file tree
Showing 11 changed files with 198 additions and 0 deletions.
170 changes: 170 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
body {
display: flex;
align-items: center;
font-family: "JetBrains Mono", sans-serif;
cursor: crosshair;
color: #ffffe6;
background-color: #10100e;
margin: 0;
padding: 0;
word-break: break-word;
text-wrap: balance;
line-height: 1.8;
min-height: 100dvh;
font-size: 20px;
}

a {
text-decoration: underline;
color: #ffffe6;
}

.overlay {
position: fixed;
inset: 0;
pointer-events: none;
}

.overlay:before {
content: "";
position: absolute;
inset: 0;
display: block;
pointer-events: none;
background-image: linear-gradient(rgba(16, 16, 16, 0.25) 50%, rgba(16, 16, 16, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.015), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.015));
background-size: 100% 0.1875rem, 0.375rem 100%;
z-index: 2;
}

.overlay:after {
content: "";
position: absolute;
inset: 0;
display: block;
pointer-events: none;
background-color: rgba(16, 16, 16, 0.2);
animation: flicker 0.3s infinite;
z-index: 2;
}

@keyframes flicker {
0% {
opacity: 0.15795;
}
5% {
opacity: 0.31511;
}
10% {
opacity: 0.94554;
}
15% {
opacity: 0.2469;
}
20% {
opacity: 0.62031;
}
25% {
opacity: 0.0293;
}
30% {
opacity: 0.00899;
}
35% {
opacity: 0.5344;
}
40% {
opacity: 0.12778;
}
45% {
opacity: 0.52042;
}
50% {
opacity: 0.3823;
}
55% {
opacity: 0.2198;
}
60% {
opacity: 0.9383;
}
65% {
opacity: 0.86615;
}
70% {
opacity: 0.68695;
}
75% {
opacity: 0.55749;
}
80% {
opacity: 0.96984;
}
85% {
opacity: 0.0361;
}
90% {
opacity: 0.24467;
}
95% {
opacity: 0.08351;
}
100% {
opacity: 0.54813;
}
}

@keyframes blink-animation {
50% {
opacity: 0;
}
}

.cursor-blink {
animation: blink-animation 1s step-end infinite;
}

p,

.algo-container-algorithm {
margin: 0 auto;
}

.algo-row {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: var(--lx-gap);
}

@media screen and (max-width: 80rem) {
img {
display: none;
}
}

@media screen and (max-width: 480px) {
body {
font-size: 0.7rem;
padding-left: 10px;
padding-right: 10px;
}
}

















Binary file added assets/favicon/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/android-chrome-256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions assets/favicon/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file added assets/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/favicon.ico
Binary file not shown.
Binary file added assets/favicon/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions assets/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-256x256.png",
"sizes": "256x256",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
Binary file added assets/images/logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 94813a8

Please sign in to comment.