1
0
mirror of https://github.com/avinal/avinal.github.io.git synced 2026-07-03 23:30:09 +05:30

add html and styles

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
2022-09-08 00:18:18 +05:30
parent 5e2c452665
commit 00effc7c33
4 changed files with 2073 additions and 0 deletions
+1956
View File
File diff suppressed because it is too large Load Diff
+21
View File
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<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">
<link rel="stylesheet" href="/website/foo-style.css">
<title>Document</title>
<script src="/website/redirect.js"></script>
</head>
<body>
<div id="app"></div>
<script src="/website/app.js"></script>
<script>
var app = Elm.Main.init({ node: document.getElementById("app") });
</script>
</body>
</html>
+91
View File
@@ -0,0 +1,91 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="65" height="60"
shape-rendering="crispEdges"><style type="text/css">.color {
animation:
col 20s linear infinite;
}
@keyframes col {
0% {
fill: #EE67A4;
}
12.5% {
fill: violet;
}
25% {
fill: indigo;
}
37.5% {
fill: blue;
}
50% {
fill: #35BEB8
}
62.5% {
fill: green;
}
75% {
fill: yellow;
}
87.5% {
fill: orange;
}
100% {
fill: red;
}
}
.rcolor {
animation:
rcol 20s linear infinite;
}
@keyframes rcol {
0% {
fill: #35BEB8;
}
12.5% {
fill: blue;
}
25% {
fill: indigo;
}
37.5% {
fill: violet;
}
50% {
fill: #EE67A4;
}
62.5% {
fill: red;
}
75% {
fill: orange;
}
87.5% {
fill: yellow;
}
100% {
fill: green;
}
}
</style><symbol id="logo" viewBox="0 -60 65 60"><path class="st0 color" d="M60-60H0V0h60z" /><path class="st1" d="M60-41h-5v10h5z" /><path class="st2 rcolor" d="M65-41h-5v10h5z" /></symbol><use xlink:href="#logo" width="65" height="60" id="XMLID_14_" y="-60" transform="scale(1 -1)" overflow="visible" /></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+5
View File
@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="65" height="60" shape-rendering="crispEdges"><style type="text/css"><![CDATA[
.st0{fill:#EE67A4;}
.st1{fill:#231F20;}
.st2{fill:#35BEB8;}
]]></style><symbol id="logo" viewBox="0 -60 65 60"><path class="st0" d="M60-60H0V0h60z"/><path class="st1" d="M60-41h-5v10h5z"/><path class="st2" d="M65-41h-5v10h5z"/></symbol><use xlink:href="#logo" width="65" height="60" id="XMLID_14_" y="-60" transform="scale(1 -1)" overflow="visible"/></svg>

After

Width:  |  Height:  |  Size: 527 B