Browse Source

Symbolic links did not work, made folders and hard linked files

old
Jean 1 year ago
parent
commit
2e59aaec31
Signed by: easthighNerd <jean@easthighnerd.net> GPG Key ID: F4B3EACD21AEFFF4
4 changed files with 174 additions and 1 deletions
  1. +0
    -1
      vtuber/res
  2. +174
    -0
      vtuber/res/css/vtuber.css
  3. BIN
      vtuber/res/img/easthighNerd - Tie Front Crop Top - 02-2.png
  4. BIN
      vtuber/res/img/favicon.png

+ 0
- 1
vtuber/res View File

@@ -1 +0,0 @@
./res

+ 174
- 0
vtuber/res/css/vtuber.css View File

@@ -0,0 +1,174 @@
body {
background-image: linear-gradient(to bottom right,#0087ED, #3BC18E);
background-repeat: no-repeat;
color: white;
font-family: monospace;
font-size: 20pt;
margin: 2%;
background-size: cover;
}

body h1 {
font-size: 28pt;
}

body h2 {
font-size: 24pt;
}

nav {
position: fixed;
background-image: linear-gradient(to right, black, rgb(75, 75, 75));
top: 0%;
left: 0%;
right: 0%;
max-height: 10%;
text-align: center;
padding: 1%;
}

nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}

nav ul li {
float: left;
padding-left: 4pt;
padding-right: 4pt;
border-right: 1pt solid gray;
}

nav ul li:last-child {
border-right: none;
}

nav ul li a {
text-transform: capitalize;
display: block;
padding-left: 4pt;
padding-right: 4pt;
}

a {
text-decoration: none;
color: yellow;
}

a:hover {
color: cyan;
transition: color 0.5s ease;
}

nav ul li a img {
width: 22pt;
height: 22pt;
}

main {
position: relative;
top: 0%;
left: 0%;
right: 0%;
bottom: 0%;
text-align: center;
text-shadow: black 2pt 2pt;
margin-top: 8%;
z-index: -1;
}

main .left {
float: left;
width: 50%;
}

main .right {
float: right;
width: 50%;
}

@media only screen and (max-width: 719px) {
body {
font-size: 18pt;
}

body h1 {
font-size: 26pt;
}

body h2 {
font-size: 22pt;
}

nav {
font-size: 10pt;
}

nav ul li {
padding-left: 2pt;
padding-right: 2pt;
}

nav ul li a {
padding-left: 2pt;
padding-right: 2pt;
}

nav ul li a img {
width: 10pt;
height: 10pt;
}

main {
margin-top: 10%;
text-shadow: black 1.75pt 1.75pt;
}

main .left {
float: none;
width: auto;
}

main .right {
float: none;
width: auto;
}
}

@media only screen and (max-width: 280px) {
body {
font-size: 14pt;
}

body h1 {
font-size: 18pt;
}

body h2 {
font-size: 16pt;
}

main {
text-shadow: black 1.25pt 1.25pt;
}

nav {
font-size: 8pt;
}

nav ul li {
padding-left: 1pt;
padding-right: 1pt;
}

nav ul li a {
padding-left: 1pt;
padding-right: 1pt;
}

nav ul li a img {
width: 10pt;
height: 10pt;
}
}

BIN
vtuber/res/img/easthighNerd - Tie Front Crop Top - 02-2.png View File

Before After
Width: 936  |  Height: 936  |  Size: 3.4 MiB

BIN
vtuber/res/img/favicon.png View File

Before After
Width: 512  |  Height: 512  |  Size: 389 KiB

Loading…
Cancel
Save