Age is now Client Side and Contact form has been added

This commit is contained in:
lukejelse04
2021-07-26 20:46:24 +01:00
parent d184972e11
commit b28cf569ce
16 changed files with 8208 additions and 48 deletions

15
css/scroll.css Normal file
View File

@ -0,0 +1,15 @@
*::-webkit-scrollbar,
*::-webkit-scrollbar-thumb {
width: 26px;
border-radius: 13px;
background-clip: padding-box;
border: 10px solid transparent;
color: rgb(108, 117, 125, 0.7);
}
*::-webkit-scrollbar-thumb:hover{
color: rgb(108, 117, 125, 1);
}
*::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 0 10px;
}

View File

@ -1,9 +1,4 @@
@charset "UTF-8";
/*!
* Start Bootstrap - Resume v6.0.3 (https://startbootstrap.com/theme/resume)
* Copyright 2013-2021 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-resume/blob/master/LICENSE)
*/
/*!
* Bootstrap v4.6.0 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors

View File

@ -1,7 +1,8 @@
#type{
display: inline;
border-right: 4px solid #6c757d;
animation: blink 1s infinite;
animation: blink 1s step-end infinite;
color: rgba(36, 129, 60, 0.7);
}
@ -9,4 +10,9 @@
50%{
border-right: none;
}
}
}
body{
opacity: 0;
transition: opacity 0.75s;
}