Added docs
This commit is contained in:
BIN
static_html/ferris.png
Normal file
BIN
static_html/ferris.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 48 KiB |
@ -1,3 +1,23 @@
|
||||
Hello Justine Squi
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Example website</title>
|
||||
<meta name="Description" Content="Vault">
|
||||
|
||||
Today is the Wed Jan 11 05:35:15 PM CET 2023
|
||||
<link href="main.css" rel="stylesheet">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
|
||||
<link rel="manifest" href="/img/site.webmanifest">
|
||||
<script src="vault.js"></script>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
|
||||
|
||||
<p style="text-align:center;"><img src="ferris.png" style="width:20%;"></p>
|
||||
<h1>Hello Justine Squi<h1>
|
||||
|
||||
<h2>Today is the Wed Jan 11 05:55:39 PM CET 2023<h2>
|
||||
|
||||
<p>This computer was up 7 hours, 55 minutes</p>
|
||||
80
static_html/main.css
Normal file
80
static_html/main.css
Normal file
@ -0,0 +1,80 @@
|
||||
miniature {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
border-radius: 4px;
|
||||
padding: 5px;
|
||||
margin-top: 10px;
|
||||
border: 1px solid #ddd;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
|
||||
/* (X) DOES NOT MATTER */
|
||||
body, html {
|
||||
background-color: #111111;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: Verdana, "Bitstream Vera Sans", sans-serif;
|
||||
color: #FFFFFF;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #F012BE;
|
||||
}
|
||||
|
||||
.container {
|
||||
height: 100%;
|
||||
width: 70%;
|
||||
display: flex;
|
||||
column-gap: 2rem;
|
||||
row-gap: 8rem;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-content: flex-end;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.item {
|
||||
height: 200px;
|
||||
font-size: 15px;
|
||||
width: 150px;
|
||||
line-height: 1em;
|
||||
padding: 3em;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
/*
|
||||
@media screen and (max-width: 920px) {
|
||||
.item {
|
||||
width: 30%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 640px) {
|
||||
.item {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
*/
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
|
||||
color: #61cObf;
|
||||
font-size: 1.5em;
|
||||
line-height: 1px;
|
||||
margin: 0px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user