-
τ
-
-
+
+
+
+
+
Alison Kit
+
My WAH-bsite!
+
I'm an illustrator, animator, and comic artist. I draw furry art and anything cringe.
+
+
+
+
+
+
About
+
+ 25, she/they
+ EN/ES
+ Red Panda fursona
+ Latine
+ Very queer and autistic
+
+
+
+
+
+
+
+
+
diff --git a/main/index.js b/main/index.js
deleted file mode 100644
index 3eece44..0000000
--- a/main/index.js
+++ /dev/null
@@ -1,67 +0,0 @@
-var width = $(window).width();
-window.onscroll = function(){
-if ((width >= 1000)){
- if(document.body.scrollTop > 80 || document.documentElement.scrollTop > 80) {
- $("#header").css("background","#fff");
- $("#header").css("color","#000");
- $("#header").css("box-shadow","0px 0px 20px rgba(0,0,0,0.09)");
- $("#header").css("padding","4vh 4vw");
- $("#navigation a").hover(function(){
- $(this).css("border-bottom","2px solid rgb(255, 44, 90)");
- },function(){
- $(this).css("border-bottom","2px solid transparent");
- });
- }else{
- $("#header").css("background","transparent");
- $("#header").css("color","#fff");
- $("#header").css("box-shadow","0px 0px 0px rgba(0,0,0,0)");
- $("#header").css("padding","6vh 4vw");
- $("#navigation a").hover(function(){
- $(this).css("border-bottom","2px solid #fff");
- },function(){
- $(this).css("border-bottom","2px solid transparent");
- });
- }
-}
-}
-
-function magnify(imglink){
- $("#img_here").css("background",`url('${imglink}') center center`);
- $("#magnify").css("display","flex");
- $("#magnify").addClass("animated fadeIn");
- setTimeout(function(){
- $("#magnify").removeClass("animated fadeIn");
- },800);
-}
-
-function closemagnify(){
- $("#magnify").addClass("animated fadeOut");
- setTimeout(function(){
- $("#magnify").css("display","none");
- $("#magnify").removeClass("animated fadeOut");
- $("#img_here").css("background",`url('') center center`);
- },800);
-}
-
-setTimeout(function(){
- $("#loading").addClass("animated fadeOut");
- setTimeout(function(){
- $("#loading").removeClass("animated fadeOut");
- $("#loading").css("display","none");
- },800);
-},1650);
-
-$(document).ready(function(){
- $("a").on('click', function(event) {
- if (this.hash !== "") {
- event.preventDefault();
- var hash = this.hash;
- $('body,html').animate({
- scrollTop: $(hash).offset().top
- }, 1800, function(){
- window.location.hash = hash;
- });
- }
- });
- });
-
\ No newline at end of file
diff --git a/main/live/style.css b/main/live/style.css
new file mode 100644
index 0000000..9225a3a
--- /dev/null
+++ b/main/live/style.css
@@ -0,0 +1,92 @@
+@import url(https://fonts.bunny.net/css?family=azeret-mono);
+*{
+ font-family: 'Azeret Mono', monospace;
+ background-color:#2b1d22;
+ color:#edd0db;
+}
+body {
+ padding:6vh 4vw;
+ background-color: rgba(0,0,0,0);
+}
+h1,h2,h3,h4,h5,h6,p,a{
+ background-color: rgba(0,0,0,0);
+}
+h2{
+ color: #f98498;
+ border-bottom:4px solid #af3d56;
+ width:10%;
+}
+h3{
+ color: #f98498;
+}
+p{
+
+}
+a{
+ color: #ef679b;
+}
+.sidenav {
+ width: 150px;
+ position: fixed;
+ z-index: 1;
+ top: 25px;
+ left: 25px;
+ background: #6b3b46;
+ overflow-x: hidden;
+ padding: 8px 0;
+}
+
+.sidenav a {
+ padding: 6px 8px 6px 16px;
+ text-decoration: none;
+ color: #edd0db;
+ display: block;
+}
+
+.sidenav a:hover {
+ color: #af3d56;
+}
+
+.main {
+ margin-left: 140px; /* Same width as the sidebar + left position in px */
+ padding: 0px 10px;
+}
+
+@media screen and (max-height: 450px) {
+ .sidenav {padding-top: 15px;}
+ .sidenav a {font-size: 18px;}
+}
+#home {
+ font-weight:bold;
+}
+#home h2{
+ width:25%;
+}
+#gallery {
+ width:auto;
+}
+#photos {
+ width:100%;
+ columns:3;
+ column-gap:4%;
+ transition:0.4s ease-in-out;
+}
+#photos img {
+ width:100%;
+ height:auto;
+ margin:4.5% 0px;
+ transition:0.4s ease-in-out;
+}
+#photos img:hover {
+ transform: scale(1.2);
+ cursor: pointer;
+}
+#contact {
+ width:auto;
+}
+#footer {
+ width:100%;
+ padding:10vh 0px;
+ text-align:center;
+ font-weight:bold;
+}
diff --git a/main/robots.txt b/main/robots.txt
new file mode 100644
index 0000000..1f53798
--- /dev/null
+++ b/main/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Disallow: /
diff --git a/main/style.css b/main/style.css
new file mode 100644
index 0000000..9225a3a
--- /dev/null
+++ b/main/style.css
@@ -0,0 +1,92 @@
+@import url(https://fonts.bunny.net/css?family=azeret-mono);
+*{
+ font-family: 'Azeret Mono', monospace;
+ background-color:#2b1d22;
+ color:#edd0db;
+}
+body {
+ padding:6vh 4vw;
+ background-color: rgba(0,0,0,0);
+}
+h1,h2,h3,h4,h5,h6,p,a{
+ background-color: rgba(0,0,0,0);
+}
+h2{
+ color: #f98498;
+ border-bottom:4px solid #af3d56;
+ width:10%;
+}
+h3{
+ color: #f98498;
+}
+p{
+
+}
+a{
+ color: #ef679b;
+}
+.sidenav {
+ width: 150px;
+ position: fixed;
+ z-index: 1;
+ top: 25px;
+ left: 25px;
+ background: #6b3b46;
+ overflow-x: hidden;
+ padding: 8px 0;
+}
+
+.sidenav a {
+ padding: 6px 8px 6px 16px;
+ text-decoration: none;
+ color: #edd0db;
+ display: block;
+}
+
+.sidenav a:hover {
+ color: #af3d56;
+}
+
+.main {
+ margin-left: 140px; /* Same width as the sidebar + left position in px */
+ padding: 0px 10px;
+}
+
+@media screen and (max-height: 450px) {
+ .sidenav {padding-top: 15px;}
+ .sidenav a {font-size: 18px;}
+}
+#home {
+ font-weight:bold;
+}
+#home h2{
+ width:25%;
+}
+#gallery {
+ width:auto;
+}
+#photos {
+ width:100%;
+ columns:3;
+ column-gap:4%;
+ transition:0.4s ease-in-out;
+}
+#photos img {
+ width:100%;
+ height:auto;
+ margin:4.5% 0px;
+ transition:0.4s ease-in-out;
+}
+#photos img:hover {
+ transform: scale(1.2);
+ cursor: pointer;
+}
+#contact {
+ width:auto;
+}
+#footer {
+ width:100%;
+ padding:10vh 0px;
+ text-align:center;
+ font-weight:bold;
+}