cleanup for mobile view
This commit is contained in:
parent
b5d09893bd
commit
be718e1b86
4 changed files with 32 additions and 24 deletions
|
@ -18,10 +18,10 @@
|
|||
<h1>Jacob Janzen's Website</h1>
|
||||
<p>
|
||||
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 and no bloat. It's currently hosted on GitHub pages, but I
|
||||
intend to eventually move it over to a self-hosted server when I get the
|
||||
hardware (this is years away).
|
||||
HTML and CSS while avoiding JavaScript as much as humanly possible.
|
||||
There are no frameworks and no bloat. It's currently hosted on GitHub
|
||||
pages, but I intend to eventually move it over to a self-hosted server
|
||||
when I get the hardware (this is years away).
|
||||
</p>
|
||||
<p>
|
||||
Find me on
|
||||
|
|
28
styles.css
28
styles.css
|
@ -2,17 +2,8 @@
|
|||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: #815b5b;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Georgia, Courier, Monospace;
|
||||
font-family: Georgia, Times;
|
||||
font-size: 20px;
|
||||
background-color: #fff8ea;
|
||||
color: #594545;
|
||||
|
@ -21,6 +12,21 @@ body {
|
|||
margin: auto;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #815b5b;
|
||||
font-family: Helvetica, Tahoma, Arial;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: #815b5b;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
a {
|
||||
color: darkblue;
|
||||
text-decoration: none;
|
||||
|
@ -33,6 +39,8 @@ a:hover {
|
|||
.header {
|
||||
color: #fff8ea;
|
||||
background-color: #594545;
|
||||
margin-top: 10px;
|
||||
padding: 5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
.header a {
|
||||
|
|
|
@ -9,10 +9,10 @@
|
|||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<a href="./index.html">Home</a>
|
||||
<a href="./projects.html">Projects</a>
|
||||
<a href="./tea.html">Tea Tasting Notes</a>
|
||||
<a href="./about.html">About Me</a>
|
||||
<a href="../index.html">Home</a>
|
||||
<a href="../projects.html">Projects</a>
|
||||
<a href="../tea.html">Tea Tasting Notes</a>
|
||||
<a href="../about.html">About Me</a>
|
||||
</div>
|
||||
<div class="body">
|
||||
<h1>White2Tea 2022 Boat Captain</h1>
|
||||
|
@ -26,7 +26,7 @@
|
|||
settles into a malty sweetness.
|
||||
</p>
|
||||
|
||||
<h3>Rating: 8/10</h3>
|
||||
<p>Rating: 8/10</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -9,10 +9,10 @@
|
|||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<a href="./index.html">Home</a>
|
||||
<a href="./projects.html">Projects</a>
|
||||
<a href="./tea.html">Tea Tasting Notes</a>
|
||||
<a href="./about.html">About Me</a>
|
||||
<a href="../index.html">Home</a>
|
||||
<a href="../projects.html">Projects</a>
|
||||
<a href="../tea.html">Tea Tasting Notes</a>
|
||||
<a href="../about.html">About Me</a>
|
||||
</div>
|
||||
<div class="body">
|
||||
<h1>Title</h1>
|
||||
|
@ -23,7 +23,7 @@
|
|||
<!-- liquor, mouthfeel, flavour -->
|
||||
</p>
|
||||
|
||||
<h3>Rating: x/10</h3>
|
||||
<p>Rating: x/10</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Reference in a new issue