Skip to content

Commit fbb23f0

Browse files
committed
revamp start
1 parent 6afccf2 commit fbb23f0

File tree

7 files changed

+79
-29
lines changed

7 files changed

+79
-29
lines changed

src/_includes/basehead.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
<title>{{title}}</title>
44
<meta name="description" content="{{description}}">
55
<meta name="author" content="alizardguy">
6-
<link rel="stylesheet" href="/style/navbar.css">
6+
<link rel="stylesheet" href="/style/navbar.css">
7+
<link rel="stylesheet" href="/style/dividers.css">

src/index.html

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,19 @@
66
{% include "navbar.html" %}
77
<link rel="stylesheet" href="/style/home.css">
88
<main>
9-
<div class="intro-block">
10-
<h1 class="intro-text">I am a lizard!</h1>
11-
<h2 class="intro-sub-text" id="at-a-time">One HTML tag at a time</h2>
12-
<script src="./scripts/at_a_time.js"></script>
9+
<div>
10+
<!--Top Intro Text-->
11+
<div class="intro-block">
12+
<h1 class="intro-text bluegradtext">I'm alizard</h1>
13+
</div>
14+
<div>
15+
<p class="infosubline">Computer Science Student, Internet Lizard</p>
16+
</div>
17+
<!--About Me-->
18+
<div class="infoblock">
19+
<p>My name is Lizard, I am a programmer with an interest in Virtual Reality.</p>
20+
<br>
21+
<p>I am apart of <a href="https://www.theneolanders.com/">The Neolanders</a> and am active on <a href="https://resonite.com/">Resonite</a>.</p>
22+
</div>
1323
</div>
1424
</main>

src/scripts/at_a_time.js

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/style/base.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*{
2-
--text: #e9e2f1;
3-
--background: #08383a;
2+
--text: #a6adbb;
3+
--background: #1b1b1e;
44
--primary: #bca3d4;
55
--secondary: #407336;
66
--accent: #5eb4ac;
@@ -12,6 +12,7 @@
1212
body{
1313
color: var(--text);
1414
background-color: var(--background);
15+
font-size: 1.25rem;
1516
}
1617

1718
a.button {

src/style/dividers.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* Dashed border */
2+
hr.dashed {
3+
border-top: 3px dashed #bbb;
4+
}
5+
6+
/* Dotted border */
7+
hr.dotted {
8+
border-top: 3px dotted #bbb;
9+
}
10+
11+
/* Solid border */
12+
hr.solid {
13+
border-top: 3px solid #bbb;
14+
}
15+
16+
/* Rounded border */
17+
hr.thinrounded {
18+
border-top: 2px solid #bbb;
19+
border-radius: 5px;
20+
}

src/style/home.css

Lines changed: 37 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,42 @@
1-
.intro-text{
2-
color: whitesmoke;
3-
font-size: 7ch;
1+
.intro-text
2+
{
3+
font-size: 6rem;
4+
font-weight: 800;
5+
padding-bottom: 10px;
46
}
57

6-
.intro-sub-text{
7-
font-size: 2rem;
8+
.intro-block
9+
{
10+
padding-top: 30px;
11+
text-align: center;
812
}
913

10-
.intro-block{
11-
padding-top: 75px;
12-
text-align: center;
14+
.infosubline
15+
{
16+
font-size: 1.25rem;
17+
line-height: 1.75rem;
18+
text-decoration: underline;
19+
}
20+
21+
.infoblock
22+
{
23+
padding-top: 35px;
24+
text-align: center;
25+
align-self: center;
26+
}
27+
28+
main
29+
{
30+
text-align: center;
31+
padding-left: 1rem;
32+
padding-right: 1rem;
33+
margin-bottom: 1rem;
34+
margin-top: 0.5rem;
35+
word-wrap: break-word;
36+
}
37+
38+
a
39+
{
40+
color: whitesmoke;
41+
text-decoration-color: green;
1342
}

src/style/navbar.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ header a {
55
header {
66
padding: 0 20px;
77
height: 50px;
8-
background-color: #264d49;
8+
background-color: #1e1e1e;
99
display: flex;
1010
justify-content: space-between;
11+
box-shadow: 3px 0px 3px 3px black;
12+
border: 1px solid 292929;
1113
}
1214

1315
.logo {

0 commit comments

Comments
 (0)