pretty
This commit is contained in:
parent
e9fe920193
commit
2f0090b5bf
3 changed files with 23 additions and 5 deletions
BIN
favicon.ico
BIN
favicon.ico
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
@ -10,7 +10,7 @@
|
||||||
<link rel="stylesheet" href="styles.css" />
|
<link rel="stylesheet" href="styles.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Jacob Janzen's website</h1>
|
<h1>Jacob Janzen's Website</h1>
|
||||||
<p>
|
<p>
|
||||||
This website is designed to be as minimal as possible. It's written in
|
This website is designed to be as minimal as possible. It's written in
|
||||||
HTML with minimal CSS and JavaScript where needed. There are no frameworks
|
HTML with minimal CSS and JavaScript where needed. There are no frameworks
|
||||||
|
|
26
styles.css
26
styles.css
|
@ -2,12 +2,30 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
color: #815b5b;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family:
|
font-family: Georgia, Courier, Monospace;
|
||||||
Courier New,
|
font-size: 20px;
|
||||||
Courier,
|
background-color: #fff8ea;
|
||||||
Monospace;
|
color: #594545;
|
||||||
width: 700px;
|
width: 700px;
|
||||||
max-width: calc(100% - 20px);
|
max-width: calc(100% - 20px);
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: darkblue;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue