diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..8f9565e --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# Ignore mac files +.DS_Store + +# Ignore build directory +out/* + +## Core latex/pdflatex auxiliary files: +*.aux +*.lof +*.log +*.lot +*.fls +*.out +*.toc +*.lol + +## Intermediate documents: +*.dvi +*-converted-to.* +# these rules might exclude image files for figures etc. +*.ps +# *.eps +*.pdf + +## Bibliography auxiliary files (bibtex/biblatex/biber): +*.bbl +*.bcf +*.blg +*-blx.aux +*-blx.bib +*.brf +*.run.xml + +## Build tool auxiliary files: +*.fdb_latexmk +*.synctex +*.synctex.gz +*.synctex.gz(busy) +*.pdfsync + +# makeidx +*.idx +*.ilg +*.ind +*.ist \ No newline at end of file diff --git a/images/kajak.jpg b/images/kajak.jpg new file mode 100644 index 0000000..b2cac87 Binary files /dev/null and b/images/kajak.jpg differ diff --git a/images/mybrain.ico b/images/mybrain.ico new file mode 100644 index 0000000..25d8c28 Binary files /dev/null and b/images/mybrain.ico differ diff --git a/images/mybrain.png b/images/mybrain.png new file mode 100755 index 0000000..c5af0a8 Binary files /dev/null and b/images/mybrain.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..5e2cf46 --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ + + + BruunSeverinsen + + + + +
+
+ + mybrain.png +

BruunSeverinsen

+
+
+
+ Home + Wiki + Contract +
+
+
+ \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..4fc0856 --- /dev/null +++ b/style.css @@ -0,0 +1,81 @@ +html { + width: 100%; + color: white; + background-color: black; + font-family: Tahoma, sans-serif; +} + +header { + display: flex; + margin: 20px; + align-items: center; + justify-content: space-between; +} + +header h1 { + margin: 30px; + font-size: 20px; +} + +.header { + display: flex; + align-items: center; +} + +.header a { + display: flex; + align-items: center; + text-decoration: none; + color: white; +} + +.leftcolumn { + float: left; + text-align: left; +} + +.rightcolumn { + float: right; + text-align: right; +} + +.topnav { + align-items: center; + overflow: hidden; + padding-top: 15px; + height: 40px; +} + +.topnav a { + font-size: 17px; + text-align: center; + color: white; + padding: 14px 16px; + text-decoration: none; +} + +.topnav a:hover { + color: white; + text-decoration: underline; + text-underline-offset: 5px; +} + +#backgroundimage { + width: 100%; + top: 0; + left: 0; + position: absolute; + z-index: -1; + filter: brightness(50%); +} + +#topicon { + width: 50px; + height: 50px; + padding-left: 10px; +} + +hr { + color: white; + width: 100px; +} \ No newline at end of file