new look for the sidebar
This commit is contained in:
parent
b652cce154
commit
7257ccc068
1 changed files with 51 additions and 19 deletions
|
@ -1,23 +1,23 @@
|
||||||
html, body {
|
* {
|
||||||
height: 100%;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: max(325px, 15%) auto;
|
grid-template-columns: max(325px, 15%) auto;
|
||||||
background: #ccc;
|
background: #fafafa;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
font-family: "Open Sans", sans-serif;
|
font-family: "Open Sans", sans-serif;
|
||||||
}
|
}
|
||||||
h1 a,
|
main article h1 a,
|
||||||
h2 a,
|
main article h2 a,
|
||||||
h3 a,
|
main article h3 a,
|
||||||
h4 a,
|
main article h4 a,
|
||||||
h5 a,
|
main article h5 a,
|
||||||
h6 a {
|
main article h6 a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
@ -31,21 +31,21 @@ h2 {
|
||||||
font-size: 1.6em;
|
font-size: 1.6em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
box-shadow: 0 0 40px black;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
main article {
|
main article {
|
||||||
max-width: 1800px;
|
max-width: 1800px;
|
||||||
box-shadow: 0 0 20px #777;
|
padding: 0 50px 30px;
|
||||||
padding: 0 50px;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
background: white;
|
background: #fafafa;
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
|
||||||
line-height: 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
main article h1,
|
main article h1,
|
||||||
main article h2,
|
main article h2,
|
||||||
main article h3 {
|
main article h3 {
|
||||||
|
@ -54,9 +54,27 @@ main article h3 {
|
||||||
margin-left: -10px;
|
margin-left: -10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main article a {
|
||||||
|
color: #00a;
|
||||||
|
text-decoration-style: dashed;
|
||||||
|
text-decoration-color: transparent;
|
||||||
|
transition: 0.2s all;
|
||||||
|
}
|
||||||
|
main article a:hover {
|
||||||
|
text-decoration-color: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
line-height: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
/* sidebar */
|
/* sidebar */
|
||||||
position: relative;
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
background: #333;
|
||||||
|
z-index: 1;
|
||||||
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
header::after {
|
header::after {
|
||||||
|
@ -73,8 +91,7 @@ header::after {
|
||||||
background: linear-gradient(to bottom, #333, #333 10%, 70%, transparent),
|
background: linear-gradient(to bottom, #333, #333 10%, 70%, transparent),
|
||||||
url("/assets/img/background.jpeg") no-repeat bottom center/cover,
|
url("/assets/img/background.jpeg") no-repeat bottom center/cover,
|
||||||
#333;
|
#333;
|
||||||
/*background: linear-gradient(to bottom, #333 0%, #333 30%, transparent 80%, transparent 100%), url("/assets/img/background.jpeg") no-repeat bottom center/cover;*/
|
filter: blur(5px) saturate(75%);
|
||||||
filter: saturate(33%);
|
|
||||||
content: "";
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -89,10 +106,25 @@ nav a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
transition: 0.2s all;
|
transition: 0.2s all;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
nav a::before {
|
||||||
|
width: 5px;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: -5px;
|
||||||
|
background: mediumpurple;
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
transition: 0.2s all;
|
||||||
}
|
}
|
||||||
nav a:hover {
|
nav a:hover {
|
||||||
background: #00000044;
|
background: #00000044;
|
||||||
}
|
}
|
||||||
|
nav a:hover::before {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
#logo {
|
#logo {
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
|
|
Loading…
Reference in a new issue