make design responsive
This commit is contained in:
parent
f880f1372c
commit
9c6314054c
2 changed files with 29 additions and 25 deletions
|
@ -86,7 +86,7 @@ header a:visited {
|
||||||
|
|
||||||
article {
|
article {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 0 0 5px;
|
padding: 0 20px 5px;
|
||||||
margin: 0 auto 0;
|
margin: 0 auto 0;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
grid-area: main;
|
grid-area: main;
|
||||||
|
@ -137,13 +137,14 @@ article li {
|
||||||
.logo {
|
.logo {
|
||||||
grid-area: logo;
|
grid-area: logo;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.outlinks {
|
.outlinks {
|
||||||
grid-area: outlinks;
|
grid-area: outlinks;
|
||||||
}
|
}
|
||||||
|
|
||||||
.outlnks ul {
|
.outlinks ul {
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -253,18 +254,6 @@ article li {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.plug-container::after, .extras-container::after {
|
|
||||||
content: "";
|
|
||||||
position: relative;
|
|
||||||
margin-top: -125px;
|
|
||||||
margin-left: -20px;
|
|
||||||
display: inline-block;
|
|
||||||
height: 125px;
|
|
||||||
width: 100%;
|
|
||||||
opacity: 50%;
|
|
||||||
z-index: -1;
|
|
||||||
}*/
|
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
border: dashed 1px #000000;
|
border: dashed 1px #000000;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
@ -378,6 +367,10 @@ h2 {
|
||||||
padding-top: 25px;
|
padding-top: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
padding-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
.with-initial > p:first-child::first-letter {
|
.with-initial > p:first-child::first-letter {
|
||||||
font-family: 'Maximilian Antiqua Initialen';
|
font-family: 'Maximilian Antiqua Initialen';
|
||||||
color: black;
|
color: black;
|
||||||
|
@ -397,26 +390,37 @@ h2 {
|
||||||
|
|
||||||
body {
|
body {
|
||||||
display: block;
|
display: block;
|
||||||
|
padding: 5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar{
|
.logo {
|
||||||
position: relative;
|
width: 100%;
|
||||||
width: auto;
|
|
||||||
height: auto;
|
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.inlinks{
|
.logo img {
|
||||||
|
padding: 0;
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo a {
|
||||||
|
margin: 0 auto 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inlinks, .outlinks{
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
columns: auto;
|
columns: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.inlinks ul, .outlinks ul {
|
||||||
|
justify-content: space-evenly;
|
||||||
|
}
|
||||||
|
|
||||||
.postlist {
|
.postlist {
|
||||||
columns: 1;
|
columns: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugs, .tags{
|
.plugs, .extras{
|
||||||
display: none;
|
padding: 2em 0 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav ul{
|
nav ul{
|
||||||
|
|
|
@ -24,6 +24,9 @@
|
||||||
<link rel="icon" type="image/x-icon" href="/images/nek0net_lynx.ico">
|
<link rel="icon" type="image/x-icon" href="/images/nek0net_lynx.ico">
|
||||||
</head>
|
</head>
|
||||||
<body itemscope="" itemtype="https://schema.org/Blog">
|
<body itemscope="" itemtype="https://schema.org/Blog">
|
||||||
|
<div class="logo">
|
||||||
|
<a href="/"><img src="/images/nek0arts_logo.svg" /></a>
|
||||||
|
</div>
|
||||||
<div class="inlinks">
|
<div class="inlinks">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/about.html">About</a></li>
|
<li><a href="/about.html">About</a></li>
|
||||||
|
@ -32,9 +35,6 @@
|
||||||
</ul>
|
</ul>
|
||||||
<hr>
|
<hr>
|
||||||
</div>
|
</div>
|
||||||
<div class="logo">
|
|
||||||
<a href="/"><img src="/images/nek0arts_logo.svg" /></a>
|
|
||||||
</div>
|
|
||||||
<div class="outlinks">
|
<div class="outlinks">
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
|
|
Loading…
Reference in a new issue