chore: update stuff
This commit is contained in:
parent
6503f893a8
commit
7051c986b3
10 changed files with 94 additions and 128 deletions
|
|
@ -16,8 +16,6 @@
|
|||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="css/global.css" />
|
||||
<link rel="stylesheet" href="css/about_me.css" />
|
||||
<link rel="stylesheet" href="css/index.css" />
|
||||
|
||||
<!-- Favicon -->
|
||||
<link
|
||||
rel="icon"
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
<meta property="keywords" content="90s Web, 2000s, Political, Veltron, Blog, Neocities, 3DSPaint, DSiPaint, Gaming, Web, HTML, CSS, Programming, Email, Tutorials, Guilded, Discord, YouTube, Twitter">
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="css/global.css" />
|
||||
<link rel="stylesheet" href="css/index.css" />
|
||||
<!-- Favicon -->
|
||||
<link
|
||||
rel="icon"
|
||||
|
|
|
|||
|
|
@ -14,8 +14,6 @@
|
|||
<meta property="author" content="MattTheTekie + Veltron">
|
||||
|
||||
<link rel="stylesheet" href="css/global.css" />
|
||||
<link rel="stylesheet" href="css/index.css" />
|
||||
|
||||
<style>
|
||||
/* Chatroom Styling */
|
||||
.chatroom-wrapper {
|
||||
|
|
|
|||
|
|
@ -633,3 +633,97 @@ a:hover {
|
|||
text-decoration: underline;
|
||||
cursor: url("http://www.veltron.net/images/cursor.cur"), auto;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Banner */
|
||||
.home-banner {
|
||||
margin-top: 12px;
|
||||
}
|
||||
.home-banner img {
|
||||
border: 1px solid #b14848;
|
||||
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.253);
|
||||
width: 99.4%;
|
||||
}
|
||||
|
||||
/* Introduction Container */
|
||||
.home-text {
|
||||
margin: 12px 0px 0px 0px;
|
||||
padding: 0px 10px 0px 10px;
|
||||
}
|
||||
/* Images */
|
||||
.home-img-1 {
|
||||
margin-top: 3px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* Updates Container */
|
||||
.recent-updates {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
height: 210px;
|
||||
padding: 10px;
|
||||
margin-top: 12px;
|
||||
font-size: 1em;
|
||||
}
|
||||
.recent-updates div {
|
||||
overflow: auto;
|
||||
}
|
||||
.recent-updates p {
|
||||
border-bottom: 3px solid #df8686;
|
||||
margin: 0px;
|
||||
padding: 5px 7px;
|
||||
}
|
||||
.recent-updates strong {
|
||||
color: #001aad;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.recent-updates strong:after {
|
||||
content: " -";
|
||||
}
|
||||
|
||||
/* Buttons Carousel */
|
||||
.carousel-buttons {
|
||||
width: 99.5%;
|
||||
padding: 5px 0px;
|
||||
margin-top: 12px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.carousel-buttons div {
|
||||
animation: carousel 35s linear infinite;
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
width: max-content;
|
||||
}
|
||||
.carousel-buttons img {
|
||||
flex-shrink: 0;
|
||||
height: 32px;
|
||||
}
|
||||
/* Carousel animation */
|
||||
@keyframes carousel {
|
||||
0% { transform: translateX(0); }
|
||||
100% { transform: translateX(-50%); }
|
||||
}
|
||||
|
||||
|
||||
/* View Counter Container */
|
||||
.view-counter-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 20px;
|
||||
width: 99.5%;
|
||||
margin-top: 12px;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
/* CSS for Phones */
|
||||
@media (max-width: 400px) {
|
||||
.home-img-1 {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,91 +0,0 @@
|
|||
/* Banner */
|
||||
.home-banner {
|
||||
margin-top: 12px;
|
||||
}
|
||||
.home-banner img {
|
||||
border: 1px solid #b14848;
|
||||
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.253);
|
||||
width: 99.4%;
|
||||
}
|
||||
|
||||
/* Introduction Container */
|
||||
.home-text {
|
||||
margin: 12px 0px 0px 0px;
|
||||
padding: 0px 10px 0px 10px;
|
||||
}
|
||||
/* Images */
|
||||
.home-img-1 {
|
||||
margin-top: 3px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* Updates Container */
|
||||
.recent-updates {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
height: 210px;
|
||||
padding: 10px;
|
||||
margin-top: 12px;
|
||||
font-size: 1em;
|
||||
}
|
||||
.recent-updates div {
|
||||
overflow: auto;
|
||||
}
|
||||
.recent-updates p {
|
||||
border-bottom: 3px solid #df8686;
|
||||
margin: 0px;
|
||||
padding: 5px 7px;
|
||||
}
|
||||
.recent-updates strong {
|
||||
color: #001aad;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.recent-updates strong:after {
|
||||
content: " -";
|
||||
}
|
||||
|
||||
/* Buttons Carousel */
|
||||
.carousel-buttons {
|
||||
width: 99.5%;
|
||||
padding: 5px 0px;
|
||||
margin-top: 12px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.carousel-buttons div {
|
||||
animation: carousel 35s linear infinite;
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
width: max-content;
|
||||
}
|
||||
.carousel-buttons img {
|
||||
flex-shrink: 0;
|
||||
height: 32px;
|
||||
}
|
||||
/* Carousel animation */
|
||||
@keyframes carousel {
|
||||
0% { transform: translateX(0); }
|
||||
100% { transform: translateX(-50%); }
|
||||
}
|
||||
|
||||
|
||||
/* View Counter Container */
|
||||
.view-counter-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 20px;
|
||||
width: 99.5%;
|
||||
margin-top: 12px;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
/* CSS for Phones */
|
||||
@media (max-width: 400px) {
|
||||
.home-img-1 {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
@ -15,7 +15,6 @@
|
|||
<meta property="keywords" content="90s Web, 2000s, Political, Veltron, Blog, Neocities, 3DSPaint, DSiPaint, Gaming, Web, HTML, CSS, Programming, Email, Tutorials, Guilded, Discord, YouTube, Twitter">
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://www.veltron.net/css/global.css" />
|
||||
<link rel="stylesheet" href="https://www.veltron.net/css/index.css" />
|
||||
<!-- Favicon -->
|
||||
<link
|
||||
rel="icon"
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
<meta property="keywords" content="90s Web, 2000s, Political, Veltron, Blog, Neocities, 3DSPaint, DSiPaint, Gaming, Web, HTML, CSS, Programming, Email, Tutorials, Guilded, Discord, YouTube, Twitter">
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="css/global.css" />
|
||||
<link rel="stylesheet" href="css/index.css" />
|
||||
<style>
|
||||
.guestbook-header-img {
|
||||
height: 33px;
|
||||
|
|
|
|||
28
index.html
28
index.html
|
|
@ -218,34 +218,6 @@
|
|||
>3DSPaint</a
|
||||
>
|
||||
</div>
|
||||
<hr />
|
||||
|
||||
<div class="nav-items">
|
||||
<img
|
||||
src="images/chat_room.png"
|
||||
class="nav-icons"
|
||||
alt="Retro Kirby"
|
||||
/><a
|
||||
href="chat.html"
|
||||
class="nav-links"
|
||||
id="navAllKirbyGames"
|
||||
>Chat Room</a
|
||||
>
|
||||
</div>
|
||||
<hr />
|
||||
|
||||
<div class="nav-items">
|
||||
<img
|
||||
src="images/guestbook.png"
|
||||
class="nav-icons"
|
||||
alt="Retro Kirby"
|
||||
/><a
|
||||
href="guestbook.html"
|
||||
class="nav-links"
|
||||
id="navAllKirbyGames"
|
||||
>Guestbook</a
|
||||
>
|
||||
</div>
|
||||
<hr />
|
||||
|
||||
<div class="nav-items">
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
<meta property="keywords" content="90s Web, 2000s, Political, Veltron, Blog, Neocities, 3DSPaint, DSiPaint, Gaming, Web, HTML, CSS, Programming, Email, Tutorials, Guilded, Discord, YouTube, Twitter">
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="css/global.css" />
|
||||
<link rel="stylesheet" href="css/index.css" />
|
||||
<!-- Favicon -->
|
||||
<link
|
||||
rel="icon"
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
<meta property="keywords" content="90s Web, 2000s, Political, Veltron, Blog, Neocities, 3DSPaint, DSiPaint, Gaming, Web, HTML, CSS, Programming, Email, Tutorials, Guilded, Discord, YouTube, Twitter">
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="css/global.css" />
|
||||
<link rel="stylesheet" href="css/index.css" />
|
||||
<!-- Favicon -->
|
||||
<link
|
||||
rel="icon"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue