starting stuff
This commit is contained in:
commit
9ecf2ee5fa
4 changed files with 51 additions and 0 deletions
10
assets/base.css
Normal file
10
assets/base.css
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
@import url(fonts.css);
|
||||||
|
|
||||||
|
html {
|
||||||
|
background-color: var(--c-bg)
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-family: "nya";
|
||||||
|
color: var(--c-fg)
|
||||||
|
}
|
||||||
5
assets/colors.css
Normal file
5
assets/colors.css
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
:root {
|
||||||
|
--c-bg: #000000;
|
||||||
|
--c-fg: #ffffff;
|
||||||
|
--c-highlight: #00ffff;
|
||||||
|
}
|
||||||
25
assets/fonts.css
Normal file
25
assets/fonts.css
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: "nya";
|
||||||
|
src: url(MapleMonoNormal-Regular.ttf.woff2);
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "nya";
|
||||||
|
src: url(MapleMonoNormal-Bold.ttf.woff2);
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "nya";
|
||||||
|
src: url(MapleMonoNormal-Italic.ttf.woff2);
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "nya";
|
||||||
|
src: url(MapleMonoNormal-BoldItalic.ttf.woff2);
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
11
index.html
Normal file
11
index.html
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Linuxposting Tilde</title>
|
||||||
|
<link rel="stylesheet" href="/assets/base.css">
|
||||||
|
<link rel="stylesheet" href="/assets/colors.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>just testing some stuff rn</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue