update
This commit is contained in:
parent
9ccc7b5bd7
commit
e38d188d00
4 changed files with 13 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -5,7 +5,7 @@
|
|||
/resources/*
|
||||
|
||||
# ignored files
|
||||
deploy.sh
|
||||
notes.md
|
||||
.directory
|
||||
*.kate-swp
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Source code of my website [vrifox.cc](https://vrifox.cc).
|
|
@ -5,6 +5,7 @@ nav {
|
|||
position: sticky;
|
||||
top: 0;
|
||||
white-space: nowrap;
|
||||
z-index: 20;
|
||||
.container {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
|
|
|
@ -5,10 +5,18 @@
|
|||
@import 'import/include.scss';
|
||||
|
||||
.section.header {
|
||||
align-items: center;
|
||||
background: $bg60;
|
||||
display: flex;
|
||||
@include a-underlined;
|
||||
&::before {
|
||||
background: linear-gradient(0deg, transparent, #3c3c5a);
|
||||
content: "";
|
||||
display: block;
|
||||
height: 32px;
|
||||
margin-top: -32px;
|
||||
position: sticky;
|
||||
top: 64px;
|
||||
width: 100%;
|
||||
}
|
||||
header {
|
||||
margin: 60px auto;
|
||||
max-width: 600px;
|
||||
|
|
Loading…
Reference in a new issue