Add custom own file stylesheet
Lately, I will implement modern CSS flexbox/grid instead of using absolute position. Signed-off-by: Max Charrier <max@puffer.fish>
This commit is contained in:
parent
38ac74f157
commit
aaab05649f
9
en.html
9
en.html
|
@ -9,16 +9,9 @@
|
||||||
|
|
||||||
<LINK REL="stylesheet" HREF="reset.css">
|
<LINK REL="stylesheet" HREF="reset.css">
|
||||||
<LINK REL="stylesheet" HREF="webfontkit/stylesheet.css">
|
<LINK REL="stylesheet" HREF="webfontkit/stylesheet.css">
|
||||||
|
<LINK REL="stylesheet" HREF="stylesheet.css">
|
||||||
<LINK REL="author licence" HREF="#about">
|
<LINK REL="author licence" HREF="#about">
|
||||||
<META NAME="author" CONTENT="Max Charrier">
|
<META NAME="author" CONTENT="Max Charrier">
|
||||||
<STYLE>
|
|
||||||
BODY {
|
|
||||||
background: #4e3246;
|
|
||||||
color: #9b8816;
|
|
||||||
font-family: "comic_monobold", monospace;
|
|
||||||
font-size: 16pt;
|
|
||||||
}
|
|
||||||
</STYLE>
|
|
||||||
</HEAD>
|
</HEAD>
|
||||||
<BODY>
|
<BODY>
|
||||||
<H1>Max</H1>
|
<H1>Max</H1>
|
||||||
|
|
|
@ -9,16 +9,9 @@
|
||||||
|
|
||||||
<LINK REL="stylesheet" HREF="reset.css">
|
<LINK REL="stylesheet" HREF="reset.css">
|
||||||
<LINK REL="stylesheet" HREF="webfontkit/stylesheet.css">
|
<LINK REL="stylesheet" HREF="webfontkit/stylesheet.css">
|
||||||
|
<LINK REL="stylesheet" HREF="stylesheet.css">
|
||||||
<LINK REL="author licence" HREF="#about">
|
<LINK REL="author licence" HREF="#about">
|
||||||
<META NAME="author" CONTENT="Max Charrier">
|
<META NAME="author" CONTENT="Max Charrier">
|
||||||
<STYLE>
|
|
||||||
BODY {
|
|
||||||
background: #4e3246;
|
|
||||||
color: #9b8816;
|
|
||||||
font-family: "comic_monobold", monospace;
|
|
||||||
font-size: 16pt;
|
|
||||||
}
|
|
||||||
</STYLE>
|
|
||||||
</HEAD>
|
</HEAD>
|
||||||
<BODY>
|
<BODY>
|
||||||
<H1>Max</H1>
|
<H1>Max</H1>
|
||||||
|
|
16
stylesheet.css
Normal file
16
stylesheet.css
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
body {
|
||||||
|
background-color: #4e3246;
|
||||||
|
color: #9b8816;
|
||||||
|
font-family: 'comic_monobold', ui-monospace, monospace;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 4rem;
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
right: 40px;
|
||||||
|
font-family: 'comic_monobold', ui-monospace, monospace;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
Loading…
Reference in a new issue