diff --git a/index.htm b/index.htm new file mode 100644 index 0000000..2da3e48 --- /dev/null +++ b/index.htm @@ -0,0 +1,28 @@ + + + + Adrian + + + + +
+

adrian's webspace

+

fantasy is not a crime, find your castle in the sky

+ +

+ blog + gallery +

+ + + +
+

Hello, I'm Adrian, a newbie developer, tech enthusiast, photographer and conlang creator who loves literature. +

+

You can find me on Github, YouTube or Reddit

+
+

Adrian Victor, all no rights reserved

+

+ + \ No newline at end of file diff --git a/index.html b/index.html deleted file mode 100644 index 0430000..0000000 --- a/index.html +++ /dev/null @@ -1,11 +0,0 @@ - - - adrian's - - - -
-

adrian's place

-

welcome to my website, this will get nice as I learn HTML...

-
- diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..f7d27be --- /dev/null +++ b/styles.css @@ -0,0 +1,63 @@ +@font-face { + font-family: "segoeUI"; + src: url("./fonts/segoeui.ttf"); +} + +body { + background-color: black; + color: white; + font-family: "segoeUI" +} + +a { + color: gray; +} + +.italic { + font-style: italic; +} + +.bold { + font-style: bold; +} + +.lightcol { + color: lightgray; +} + +.nospace { + margin-top: 0; + margin-bottom: 0; +} + +.notopmargin { + margin-top: 0; +} + +.nobottommargin { + margin-bottom: 0; +} + +.ad-banner { + width: 200px; + height: 200px; + border: 2px solid gray; + } + +.ad-banner img { + width: 100%; + height: auto; + } + +.vertcentered { + position: absolute; + top: 50%; + left: 50%; + -moz-transform: translateX(-50%) translateY(-50%); + -webkit-transform: translateX(-50%) translateY(-50%); + transform: translateX(-50%) translateY(-50%); +} + +a.inlined { + display: inline; +} \ No newline at end of file