Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersSeverinsen committed Nov 17, 2024
0 parents commit 105e789
Show file tree
Hide file tree
Showing 6 changed files with 148 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
Binary file added images/kajak.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/mybrain.ico
Binary file not shown.
Binary file added images/mybrain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<html>
<head>
<title>BruunSeverinsen</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="images/mybrain.ico">
</head>
<!--<img src="images/kajak.jpg" alt="kajak.jpg" id="backgroundimage">-->
<header id="primary">
<div class="header leftcolumn">
<a href="#">
<img src="images/mybrain.png" alt="mybrain.png" id="topicon">
<h1>BruunSeverinsen</h1>
</a>
</div>
<div class="topnav rightcolumn">
<a href="#">Home</a>
<a href="./wiki">Wiki</a>
<a href="./contract">Contract</a>
</div>
</header>
<hr>
</html>
81 changes: 81 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 105e789

Please sign in to comment.