mirror of
https://github.com/smartfrigde/smartfrigde.github.io.git
synced 2024-08-14 22:46:45 +00:00
dd
This commit is contained in:
parent
29b0c949c3
commit
e72be5ca7b
3 changed files with 100 additions and 9 deletions
78
index.html
78
index.html
|
@ -1,2 +1,76 @@
|
|||
<h1>Work in progress</h1>
|
||||
<h1>for beta visit /smartwebsite</h1>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8" />
|
||||
|
||||
<meta property="og:url" content="https://smartfridge.ml" />
|
||||
<meta property="og:title" content="smartfridge website" />
|
||||
<meta
|
||||
property="og:description"
|
||||
content="smartfridge personal website or something"
|
||||
/>
|
||||
<meta property="og:type" content="website" />
|
||||
|
||||
<meta name="author" content="smartfridge" />
|
||||
<meta
|
||||
name="description"
|
||||
content="smartfridge personal website or something"
|
||||
/>
|
||||
<meta
|
||||
name="keywords"
|
||||
content="HTML, CSS, JS, Metro, CSS3, Javascript, HTML5, UI, Library, Web, Development, Framework"
|
||||
/>
|
||||
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
||||
/>
|
||||
<!-- Metro 4 -->
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.metroui.org.ua/v4/css/metro-all.min.css"
|
||||
/>
|
||||
<!-- Custom Website CSS -->
|
||||
<link rel="stylesheet" href="website.css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="text-center">smartfridge personal website</h1>
|
||||
<p class="text-center">Things I work on:</p>
|
||||
<ul
|
||||
id="paintings"
|
||||
data-role="list"
|
||||
data-sort-dir="desc"
|
||||
data-cls-list="unstyled-list row flex-justify-center mt-4"
|
||||
data-cls-list-item="cell-sm-6 cell-md-4"
|
||||
>
|
||||
<li>
|
||||
<figure class="text-center">
|
||||
<div class="img-container thumbnail">
|
||||
<img
|
||||
src="https://repository-images.githubusercontent.com/313312687/3835ca80-b41e-11eb-94ab-d3c7763d812a"
|
||||
alt="Artwork by CarnigeWasHere ;)"
|
||||
/>
|
||||
</div>
|
||||
<h2>ArmCord</h2>
|
||||
<figcaption class="description text-bold">ArmCord is a custom alternative Discord client made for people on lower-end devices and ARM architecture that want custom Discord experience. </figcaption>
|
||||
</figure>
|
||||
</li>
|
||||
<li>
|
||||
<figure class="text-center">
|
||||
<div class="img-container thumbnail">
|
||||
<img
|
||||
src="https://repository-images.githubusercontent.com/263717223/c23a1d80-8764-11eb-86a4-27017d6e627e"
|
||||
alt=""
|
||||
/>
|
||||
</div>
|
||||
<h2>Lightcord</h2>
|
||||
<figcaption class="description text-bold">Lightcord is a simple and customizable client for Discord. It includes BandagedBD, Glasstron and a discord.js-like api. </figcaption>
|
||||
</figure>
|
||||
</li>
|
||||
</ul>
|
||||
<p>WIP</p>
|
||||
<!-- Metro 4 -->
|
||||
<script src="https://cdn.metroui.org.ua/v4/js/metro.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -200,13 +200,15 @@ function createWindowModal(){
|
|||
|
||||
function armcord() {
|
||||
Desktop.createArmCordWindow({
|
||||
resizeable: false,
|
||||
draggable: false,
|
||||
width: 600,
|
||||
//icon: "<span class='mif-" + w_icons[index] + "'></span>",
|
||||
title: "<div class='window-title'></div>",
|
||||
content: `<img src="armcord-preview.png" alt="ArmCord">`,
|
||||
});
|
||||
resizeable: false,
|
||||
draggable: true,
|
||||
width: 600,
|
||||
//icon: "<span class='mif-" + w_icons[index] + "'></span>",
|
||||
title: "<div class='window-title'></div>",
|
||||
//content: `<img src="armcord-preview.png" alt="ArmCord">`,
|
||||
content: "https://discord.com/app",
|
||||
clsContent: "bg-dark",
|
||||
});
|
||||
}
|
||||
|
||||
function createWindowYoutube(){
|
||||
|
|
15
website.css
Normal file
15
website.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
body {
|
||||
background-color: #23272a;
|
||||
}
|
||||
h1 {
|
||||
color: #ffffff;
|
||||
}
|
||||
p {
|
||||
color: #ffffff;
|
||||
}
|
||||
h2 {
|
||||
color: #ffffff;
|
||||
}
|
||||
.description {
|
||||
color: #ffffff;
|
||||
}
|
Loading…
Reference in a new issue