minor changes to how layout works
This commit is contained in:
parent
2e6a2cb200
commit
9f018de170
2 changed files with 23 additions and 20 deletions
|
@ -20,7 +20,12 @@ a {
|
|||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
}
|
||||
a.obj-wrapper{
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
|
@ -80,11 +85,9 @@ header#header {
|
|||
flex-flow: row nowrap;
|
||||
gap: 0.5em;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
font-size: 24px;
|
||||
justify-content: space-between;
|
||||
width: 100vw;
|
||||
padding: 0.5em 1em;
|
||||
/*was a fun experiment but this just causes issues*/
|
||||
/*position: fixed;*/
|
||||
}
|
||||
#content {
|
||||
box-sizing: border-box;
|
||||
|
@ -155,11 +158,7 @@ blockquote {
|
|||
width: 2rem;
|
||||
height: 2rem;
|
||||
}
|
||||
/*https://stackoverflow.com/questions/35269947/how-can-i-align-one-item-right-with-flexbox#35270047*/
|
||||
.back-shover {
|
||||
margin-left:auto;
|
||||
margin-top:auto;
|
||||
}
|
||||
|
||||
/* div element with this class can be a bitch so need to select those as well as pre*/
|
||||
.sourceCode {
|
||||
max-width: -moz-available;
|
||||
|
|
|
@ -23,17 +23,21 @@
|
|||
|
||||
<body>
|
||||
<!-- originally handled dark v light via js but decided it would be better to just do it all in css and have no toggle 8a7917a0cd34bd7637d9a9a8ad327e4b847cdeed is the last commit where I had the system setup -->
|
||||
<header id="header">
|
||||
<a class="" rel="prefetch" href="/"><object aria-hidden="true" tabindex="-1" class="icon svg"
|
||||
data="/static/images/house.svg">
|
||||
<header id="header" role="menubar">
|
||||
<div class="left">
|
||||
<a class="obj-wrapper" rel="prefetch" href="/" role="menuitem"><object aria-hidden="true" tabindex="-1"
|
||||
class="icon svg" data="/static/images/house.svg">
|
||||
<a href="/" class="nav-link" aria-hidden="true" tabindex="-1">home</a>
|
||||
</object></a>
|
||||
<div class="back-shover"></div>
|
||||
<a class="" href="/index.xml"> <object aria-hidden="true" tabindex="-1" class="icon svg"
|
||||
data="/static/images/rss.svg">
|
||||
</div>
|
||||
<div class="right">
|
||||
<a class="obj-wrapper" role="menuitem" href="/index.xml"> <object aria-hidden="true" tabindex="-1"
|
||||
class="icon svg" data="/static/images/rss.svg">
|
||||
<a href="/index.xml" class="nav-link" aria-hidden="true" tabindex="-1">web feed</a>
|
||||
</object>
|
||||
</a>
|
||||
<!--TODO hamburger menu??-->
|
||||
</div>
|
||||
</header>
|
||||
<div id="content-outer">
|
||||
<div id="content">
|
||||
|
|
Loading…
Reference in a new issue