Compare commits
7 Commits
7f177ba009
...
dec09dcc18
Author | SHA1 | Date |
---|---|---|
Sophie Marie | dec09dcc18 | |
Sophie Marie | 047a4ff232 | |
Sophie Marie | 292f1f8edb | |
Sophie Marie | 73163609e0 | |
Sophie Marie | 956ec4484a | |
Sophie Marie | a8e0587a4a | |
Sophie Marie | 037e031060 |
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2022 Sophie Mondz
|
||||
Copyright (c) 2023 Sophie Axebane
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
31
index.html
31
index.html
|
@ -1,30 +1,31 @@
|
|||
<!DOCTYPE HTML>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/styles/stylemain.css">
|
||||
<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">
|
||||
<title>IDeletedSystem64</title>
|
||||
<!-- Replace "Username" with your name, website name or social username! -->
|
||||
<title>system64.dev</title>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<!-- Replace "Username" with your name, website name, or social username!-->
|
||||
<h1 class="header">system64.dev</h1>
|
||||
<!-- <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-="main">
|
||||
<h1 class="intro">I'm Sophie (she/they)</h1>
|
||||
<p class="info">I am:</p>
|
||||
<ul>
|
||||
<li>a digital and sometimes traditional artist</li>
|
||||
<li>a learning beginner programmer</li>
|
||||
<li>a linux user and aspiring sysadmin</li>
|
||||
</ul>
|
||||
-->
|
||||
<div class="container">
|
||||
<div class="main">
|
||||
<h1>I'm Sophie (she/they)</h1>
|
||||
<h2>I am:</h2>
|
||||
<ul>
|
||||
<li>a digital and sometimes traditional artist</li>
|
||||
<li>a learning beginner programmer</li>
|
||||
<li>a linux user and aspiring sysadmin</li>
|
||||
</ul>
|
||||
<div class="buttons">
|
||||
<input type="button" onclick="location.href='/socials.html';" value="Socials">
|
||||
<input type="button" onclick="location.href='/artwork/index.html';" value="Art Gallery">
|
||||
<input type="button" onclick="location.href='/projects/index.html';" value="Projects">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
</body>
|
|
@ -0,0 +1,84 @@
|
|||
/* CSS for System64.dev buttons, by IDeletedSystem64. Under MIT License (v4.14.23) */
|
||||
/* Heavily based from 98css, Check it out here: https://jdan.github.io/98.css/ */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@600&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
|
||||
/* Import dem fonts */
|
||||
|
||||
input {
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
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:active {
|
||||
background: #acacac;
|
||||
box-shadow: inset 0em 0em
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-flex;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
cursor: pointer;
|
||||
transition: 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
.button.button1 {
|
||||
border-radius: 0;
|
||||
box-sizing: border-box;
|
||||
min-height: 23px;
|
||||
color: #000;
|
||||
padding: 0 2px 2px 0;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 0.1px solid transparent;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
background-color: #979797;
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
.button.button1 span {
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
display: block;
|
||||
width: 100%;
|
||||
background: #dad9d9;
|
||||
font-size: 170%;
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
box-shadow: inset -0.05em -0.05em black;
|
||||
}
|
||||
|
||||
.button.button1 span:hover,
|
||||
.button.button1:hover + .button.button1 span {
|
||||
background-color: #ACACAC;
|
||||
border-top: 1px solid transparent;
|
||||
border-right: 0.1px solid #dad9d9;
|
||||
border-bottom: 1px solid #dad9d9;
|
||||
border-left: 1px solid transparent;
|
||||
box-shadow: inset -0.05em -0.05em transparent;}
|
||||
.button.button1:hover {
|
||||
background-color: #ACACAC;
|
||||
}
|
||||
/* *vomits* */
|
||||
|
||||
@media (max-width: 64em) {
|
||||
input {
|
||||
min-height: 70px;
|
||||
min-width: 250px;
|
||||
font-size: 32pt;
|
||||
}
|
||||
}
|
|
@ -1,179 +1,77 @@
|
|||
/* CSS for System64.dev v2, by IDeletedSystem64. Under MIT License (v4.14.23) */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@600&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
|
||||
/* Import Fonts */
|
||||
/* Import dem fonts */
|
||||
|
||||
div.alert {
|
||||
width: 100%;
|
||||
background-color: #ffffe1;
|
||||
}
|
||||
p.alert {
|
||||
button.home {
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
color: white;
|
||||
/* font-size: */
|
||||
display: inline;
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
color: black;
|
||||
}
|
||||
|
||||
header {
|
||||
background: linear-gradient(#072CFF, #0e26ae );
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
height: 40px;
|
||||
width: 100%
|
||||
}
|
||||
h1.header {
|
||||
padding: 32px;
|
||||
h1 {
|
||||
font-family: 'Bitter', serif;
|
||||
color: white;
|
||||
display: inline;
|
||||
font-size: 26pt
|
||||
}
|
||||
/* Header / Menubar */
|
||||
|
||||
h1.intro {
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
h2 {
|
||||
font-family: 'Bitter', serif;
|
||||
color: white;
|
||||
font-size: 2.5vw;
|
||||
padding-top: 13vw;
|
||||
padding-left: 5vw;
|
||||
}
|
||||
p.info {
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
color: white;
|
||||
font-size: 1.25vw;
|
||||
margin: 0 0 0 5.5%; /* we use margins now, fuck you. */
|
||||
font-size: 16pt;
|
||||
}
|
||||
|
||||
li {
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
color: white;
|
||||
font-size: 1.20vw;
|
||||
font-size: 15pt;
|
||||
list-style-type: square;
|
||||
}
|
||||
ul {
|
||||
margin: 1% 0 0 5.5%;
|
||||
}
|
||||
div.main {
|
||||
width: 75%;
|
||||
margin: auto;
|
||||
}
|
||||
div.buttons {
|
||||
margin: 1% 0 0 5%;
|
||||
}
|
||||
/* Text based stuffs */
|
||||
|
||||
body {
|
||||
background-image: url("/img/bg.jpg");
|
||||
}
|
||||
/* Main content as well as website background */
|
||||
input {
|
||||
-webkit-appearance: none;
|
||||
min-width: 200px;
|
||||
background: #dad9d9;
|
||||
font-size: 150%;
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
color: black;
|
||||
box-shadow: inset -0.05em -0.05em black
|
||||
}
|
||||
input:active {
|
||||
background: #acacac;
|
||||
box-shadow: inset 0em 0em
|
||||
|
||||
.container {
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-flex;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
cursor: pointer;
|
||||
transition: 0.3s ease-in-out;
|
||||
div.main {
|
||||
margin-top: 30vh;
|
||||
margin-left: 10vh;
|
||||
}
|
||||
/* Website layout */
|
||||
|
||||
.button.button1 {
|
||||
border-radius: 0;
|
||||
box-sizing: border-box;
|
||||
min-height: 23px;
|
||||
color: #000;
|
||||
padding: 0 2px 2px 0;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
border-right: 0.1px solid transparent;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #CCCCCC;
|
||||
background-color: #979797;
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
.button.button1 span {
|
||||
-webkit-appearance: none;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
display: block;
|
||||
width: 100%;
|
||||
background: #dad9d9;
|
||||
font-size: 170%;
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
box-shadow: inset -0.05em -0.05em black;
|
||||
}
|
||||
|
||||
.button.button1 span:hover,
|
||||
.button.button1:hover + .button.button1 span {
|
||||
background-color: #ACACAC;
|
||||
border-top: 1px solid transparent;
|
||||
border-right: 0.1px solid #dad9d9;
|
||||
border-bottom: 1px solid #dad9d9;
|
||||
border-left: 1px solid transparent;
|
||||
box-shadow: inset -0.05em -0.05em transparent;}
|
||||
.button.button1:hover {
|
||||
background-color: #ACACAC;
|
||||
}
|
||||
|
||||
div.webbutton {
|
||||
margin: auto;
|
||||
width: 264px;
|
||||
padding-top: 3px;
|
||||
}
|
||||
img.webbutton{
|
||||
width: 88px;
|
||||
height: 31px;
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
/* Button */
|
||||
/* Web buttons :) */
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* I'm mad that I have to make this mobile-compatible, Lol. https://twitter.com/IDeleteSystem64/status/1512218098325147655?s=20&t=Hz4V-vxmywYwTMvuBbCAZQ */
|
||||
@media only screen and (max-width: 980px) {
|
||||
p.intro {
|
||||
font-size: 8vw;
|
||||
padding-top: 10px;
|
||||
/* Did you know: I wish I wasn't doing this right now? */
|
||||
@media (max-width: 64em) {
|
||||
h1 {
|
||||
font-size: 56pt;
|
||||
}
|
||||
header {
|
||||
height: 75px;
|
||||
h2 {
|
||||
font-size: 28pt;
|
||||
}
|
||||
h1.header {
|
||||
font-size: 60px;
|
||||
padding-left: 25%;
|
||||
li {
|
||||
font-size: 26pt;
|
||||
}
|
||||
input {
|
||||
margin-left: -10%;
|
||||
font-size: 7vw;
|
||||
-webkit-text-size-adjust:100%;
|
||||
min-width: 125%;
|
||||
max-width: 125;
|
||||
}
|
||||
p.info {
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
color: white;
|
||||
font-size: 4.5vw;
|
||||
|
||||
div.main {
|
||||
margin-left: 0vh;
|
||||
}
|
||||
img.webbutton {
|
||||
width: 176px;
|
||||
height: 62px;
|
||||
float: left;
|
||||
.container {
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
}
|
||||
div.webbutton {
|
||||
width: 100%;
|
||||
padding-left: 15%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue