-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 105e789
Showing
6 changed files
with
148 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
## 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 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |