Fix images, improve menubar appearance
This commit is contained in:
parent
9d5a46b22b
commit
bceccea001
5 changed files with 13 additions and 11 deletions
BIN
img/favicon/favicon.png
Normal file
BIN
img/favicon/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
img/taskbar/blueberry_pt.png
Normal file
BIN
img/taskbar/blueberry_pt.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
11
index.html
11
index.html
|
@ -2,18 +2,11 @@
|
|||
<head>
|
||||
<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="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>
|
||||
<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>
|
||||
<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">
|
||||
<input class="taskbar" type="button" onclick="location.href='https://system64.dev';" value="system64.dev">
|
||||
</div>
|
||||
|
|
|
@ -10,6 +10,7 @@ input {
|
|||
background: #dad9d9;
|
||||
box-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf;
|
||||
|
||||
min-width: 200px;
|
||||
min-height: 16px;
|
||||
|
||||
color: black;
|
||||
|
@ -18,7 +19,8 @@ input {
|
|||
}
|
||||
input.taskbar {
|
||||
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;
|
||||
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
|
@ -29,6 +31,10 @@ input.taskbar {
|
|||
margin-left: 2px;
|
||||
}
|
||||
|
||||
input.taskbar:active {
|
||||
background: #acacac url(/img/taskbar/blueberry_pt.png) left no-repeat;
|
||||
background-position: 2px;
|
||||
}
|
||||
input:active {
|
||||
background: #acacac;
|
||||
box-shadow: inset 0em 0em
|
||||
|
|
|
@ -55,11 +55,14 @@ img.home {
|
|||
|
||||
div.taskbar {
|
||||
position: absolute;
|
||||
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
|
||||
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 */
|
||||
|
||||
|
|
Loading…
Reference in a new issue