what's coming
-i really wanna make a shader that emulates my "boxes" i've been drawing recently and use it as the background for this page. It's gonna be a wip but i think it's gonna be really cool if i can get it to work. I hope i can do it in 2d emulating 3d but i might have to do the 3d shader thing that i'm dreading
-also i really wanna make a way for me to make posts about my thoughts. but i have no clue how to do it easily. Ideally i'd be able to upload from my phone. gotta figure something out for that.
+ ++ I wanna spice up the website, but i'm really bad at doing visual stuff. at least when it's not code based. so maybe i'll write some code that makes the site look cooler :p +
++ also i wanna make it so my pico8 games are playable in the browser here on a seperate page. so i'm gonna work on that too. + +
diff --git a/public/main.css b/public/main.css index 3466ded..45c99a5 100644 --- a/public/main.css +++ b/public/main.css @@ -33,29 +33,67 @@ a:active { .header { /*height: 10vh;*/ /*float: left;*/ + text-align: center; + background: white; + border-radius: 16px; + width:100%; + padding:1em; + padding-left: .2em; + padding-right:.2em; + opacity: .8; } -.main_view { - width: 100vw; - height: 70vh; - margin-top: 10vh; - overflow-y: scroll; +.sidebar { + width:20%; + float: left; + background: white; + border-radius:16px; + padding:1em; + margin-top: 2em; + opacity: .8; + } +.content { + float: right; + width: 70%; + margin-top: 2em; + background: white; + padding:1em; + border-radius: 16px; + opacity: .8; +} + + .navbar_links { /*display: grid;*/ /*grid-template-columns: auto auto;*/ - width: 30%; + list-style: none; } iframe { } .navbar_link { - width: 100%; + width:10em; + display: table-cell; + font-size: 22px; } * { width: 90%; } + +iframe { + width: 90%; + height: 400px; + margin: 3%; + +} + +@media only screen and (max-width: 600px){ + .sidebar {width:100%} + .content {width:100%} + +}