1
This commit is contained in:
Evan Pratten 2020-01-21 16:55:31 -05:00
parent 66065462d4
commit bcbfc8c058
No known key found for this signature in database
GPG Key ID: 93AC7B3D071356D3
5 changed files with 26 additions and 20 deletions

View File

@ -2,13 +2,14 @@
<br><br>
<!-- Brython -->
<script src="/assets/js/brython.js"></script>
<script src="/assets/js/brython_stdlib.js"></script>
<script>
function startPY(){
function startPY() {
brython();
console.log("Started Python")
}
@ -66,7 +67,7 @@
var particles = document.getElementById("particles-js")
particles.style.height = body.scrollHeight + "px"
particles.style.height = body.scrollHeight + "px"
console.log(body.scrollHeight)
</script>
@ -78,7 +79,7 @@
</script>
<!-- Twitter embeds -->
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<!-- Roughviz -->
<script src="https://unpkg.com/rough-viz@1.0.5"></script>

View File

@ -25,7 +25,7 @@
<h1>{{site.title}}</h1>
<hr>
<div class="tagline">
<br><br>
<br><br><br>
<h2>Who am I?</h2>
<p>{{site.about}}</p>
@ -48,17 +48,7 @@
Since then, I have picked up many other languages, and am currently mainly using Python,
Java, and C.<br>
I am working on learning a few new languages, including Ruby at the moment.</p>
<!-- <br><br>
<h2>Blog</h2>
<p>
I write things ocasionally. If you are interested in my projects and ideas, check out my blog
</p>
<a href="{{site.baseurl}}/blog">
<button type="button" class="btn btn-success">View Page</button>
</a> -->
<br><br>
<h2>Projects</h2>

View File

@ -18,11 +18,12 @@
<div class="reactive-bg">
<div class="post container">
<h1>Blog Posts & Other Stuff</h1>
<h1>Posts</h1>
<hr>
<div class="list-group" id="posts">
<a href="#posts" class="feature list-group-item list-group-item-action list-group-item-dark ">Featured
<a href="#posts"
class="feature list-group-item list-group-item-action list-group-item-dark ">Featured
Post</a>
{% assign i = 0 %}
@ -78,7 +79,7 @@
</div>
</div>
</div>
{% include footer.html %}

View File

@ -6,7 +6,7 @@ body {
background-color: #343a40;
}
.foot {}
.site-info {
color: rgb(199, 195, 195);
@ -18,6 +18,16 @@ body {
background-color: #ebeef1; */
}
.invert{
background-color: #343a40;
color: #fff;
font-weight: bolder;
width: max-content;
padding-left: 5;
padding-right: 5;
}
.header {
height: 35vh;
/* max-width: 1140px; */
@ -86,6 +96,10 @@ img {
text-align: center;
}
h1 {
font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'IBM Plex Mono', monospace;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB