Add beginings of menubar, image to home
This commit is contained in:
parent
29d29c06ce
commit
9d5a46b22b
Binary file not shown.
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 2.1 KiB |
|
@ -4,6 +4,7 @@
|
|||
<link rel="stylesheet" type="text/css" href="/styles/buttons.css"> <!-- Button styling -->
|
||||
<link rel="icon" type="image/x-icon" href="/img/favicon/favicon.gif">
|
||||
<title>system64.dev</title>
|
||||
<script>console.log("%cI'm the ANTONYMPH of the internet!", 'color: #FFF8C5, font-size: 30px');</script>
|
||||
</head>
|
||||
<body>
|
||||
<!-- <h1 class="header">system64.dev_v2</h1> -->
|
||||
|
@ -12,7 +13,11 @@
|
|||
<p class="alert">This is the beta website. Some things may break or disappear with zero notice.</p>
|
||||
</div>
|
||||
-->
|
||||
<div class="container">
|
||||
|
||||
<div class="taskbar">
|
||||
<input class="taskbar" type="button" onclick="location.href='https://system64.dev';" value="system64.dev">
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="main">
|
||||
<h1>I'm Sophie (she/they)</h1>
|
||||
<h2>I am:</h2>
|
||||
|
|
|
@ -10,13 +10,24 @@ 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;
|
||||
font-size: 17pt;
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
}
|
||||
input.taskbar {
|
||||
background: #c3c3c3 url(/img/taskbar/blueberry_pt.png) left no-repeat;
|
||||
padding-left: 18px;
|
||||
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-size: 13pt;
|
||||
|
||||
min-width: 130px;
|
||||
margin-top: 1px;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
input:active {
|
||||
background: #acacac;
|
||||
|
|
|
@ -52,6 +52,15 @@ img.home {
|
|||
align-self: center;
|
||||
padding: 5%;
|
||||
}
|
||||
|
||||
div.taskbar {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
background-color: #c3c3c3 ;
|
||||
}
|
||||
/* Website layout */
|
||||
|
||||
img.webbutton{
|
||||
|
|
Loading…
Reference in New Issue