Fix images, improve menubar appearance

This commit is contained in:
Sophie Marie 2023-04-28 20:16:12 -05:00
parent 9d5a46b22b
commit bceccea001
Signed by: IDeletedSystem64
GPG key ID: F5D997A1BEF778ED
5 changed files with 13 additions and 11 deletions

BIN
img/favicon/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -2,18 +2,11 @@
<head> <head>
<link rel="stylesheet" type="text/css" href="/styles/stylemain.css"> <!-- Import main styling --> <link rel="stylesheet" type="text/css" href="/styles/stylemain.css"> <!-- Import main styling -->
<link rel="stylesheet" type="text/css" href="/styles/buttons.css"> <!-- Button styling --> <link rel="stylesheet" type="text/css" href="/styles/buttons.css"> <!-- Button styling -->
<link rel="icon" type="image/x-icon" href="/img/favicon/favicon.gif"> <link rel="icon" type="image/x-icon" href="/img/favicon/favicon.png">
<title>system64.dev</title> <title>system64.dev</title>
<script>console.log("%cI'm the ANTONYMPH of the internet!", 'color: #FFF8C5, font-size: 30px');</script> <script>console.log("%cI'm the ANTONYMPH of the internet!", 'color: #FFF8C5, font-size: 30px');</script> <!-- hecky that doesn't work the way i want -->
</head> </head>
<body> <body>
<!-- <h1 class="header">system64.dev_v2</h1> -->
<!--
<div class="alert">
<p class="alert">This is the beta website. Some things may break or disappear with zero notice.</p>
</div>
-->
<div class="taskbar"> <div class="taskbar">
<input class="taskbar" type="button" onclick="location.href='https://system64.dev';" value="system64.dev"> <input class="taskbar" type="button" onclick="location.href='https://system64.dev';" value="system64.dev">
</div> </div>

View file

@ -10,6 +10,7 @@ input {
background: #dad9d9; background: #dad9d9;
box-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf; box-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf;
min-width: 200px;
min-height: 16px; min-height: 16px;
color: black; color: black;
@ -18,7 +19,8 @@ input {
} }
input.taskbar { input.taskbar {
background: #c3c3c3 url(/img/taskbar/blueberry_pt.png) left no-repeat; background: #c3c3c3 url(/img/taskbar/blueberry_pt.png) left no-repeat;
padding-left: 18px; background-position: 2px;
padding-left: 25px;
box-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf; box-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf;
font-family: 'Share Tech Mono', monospace; font-family: 'Share Tech Mono', monospace;
@ -29,6 +31,10 @@ input.taskbar {
margin-left: 2px; margin-left: 2px;
} }
input.taskbar:active {
background: #acacac url(/img/taskbar/blueberry_pt.png) left no-repeat;
background-position: 2px;
}
input:active { input:active {
background: #acacac; background: #acacac;
box-shadow: inset 0em 0em box-shadow: inset 0em 0em

View file

@ -55,11 +55,14 @@ img.home {
div.taskbar { div.taskbar {
position: absolute; position: absolute;
left: 0px; left: 0px;
top: 0px; top: 0px;
width: 100%; width: 100%;
height: 30px; height: 30px;
background-color: #c3c3c3 ; background-color: #c3c3c3;
box-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #c3c3c3,inset -2px -2px grey,inset 2px 2px #dfdfdf;
} }
/* Website layout */ /* Website layout */