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="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.gif">
|
||||||
<title>system64.dev</title>
|
<title>system64.dev</title>
|
||||||
|
<script>console.log("%cI'm the ANTONYMPH of the internet!", 'color: #FFF8C5, font-size: 30px');</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- <h1 class="header">system64.dev_v2</h1> -->
|
<!-- <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>
|
<p class="alert">This is the beta website. Some things may break or disappear with zero notice.</p>
|
||||||
</div>
|
</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">
|
<div class="main">
|
||||||
<h1>I'm Sophie (she/they)</h1>
|
<h1>I'm Sophie (she/they)</h1>
|
||||||
<h2>I am:</h2>
|
<h2>I am:</h2>
|
||||||
|
|
|
@ -10,13 +10,24 @@ 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;
|
||||||
font-size: 17pt;
|
font-size: 17pt;
|
||||||
font-family: 'Share Tech Mono', monospace;
|
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 {
|
input:active {
|
||||||
background: #acacac;
|
background: #acacac;
|
||||||
|
|
|
@ -52,6 +52,15 @@ img.home {
|
||||||
align-self: center;
|
align-self: center;
|
||||||
padding: 5%;
|
padding: 5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.taskbar {
|
||||||
|
position: absolute;
|
||||||
|
left: 0px;
|
||||||
|
top: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 30px;
|
||||||
|
background-color: #c3c3c3 ;
|
||||||
|
}
|
||||||
/* Website layout */
|
/* Website layout */
|
||||||
|
|
||||||
img.webbutton{
|
img.webbutton{
|
||||||
|
|
Loading…
Reference in New Issue