Skip to content

Commit 4e75822

Browse files
committed
Pushing up stuff
1 parent d07b710 commit 4e75822

File tree

10 files changed

+705
-22
lines changed

10 files changed

+705
-22
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.

_normalize.scss

+594
Large diffs are not rendered by default.

_variables.scss

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
$header-bg-color: #444444;
2+
$header-color: #dddddd;

index.html

+23-19
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
<!DOCTYPE html>
2-
<html>
3-
4-
<head>
5-
<title>The Sol Programming Language</title>
6-
<link href="style.css" type="text/css" rel="stylesheet">
7-
</head>
8-
9-
<body>
10-
<header>
11-
<h1>The Sol Programming Language</h1>
12-
<h3>The sunniest language on this side of the Meridian</h3>
13-
</header>
14-
15-
<div style="text-align:center;">WIP</div>
16-
17-
18-
</body>
19-
20-
</html>
2+
<html lang="en">
3+
<head>
4+
<title>The Sol Programming Language</title>
5+
<link href="style.css" type="text/css" rel="stylesheet">
6+
</head>
7+
<body>
8+
<header>
9+
<h1>Sol</h1>
10+
<nav>
11+
<ul>
12+
<li>Home</li>
13+
<li>Github</li>
14+
</ul>
15+
</nav>
16+
</header>
17+
<main>
18+
<div id="jumbotron">
19+
<h1>Sol</h1>
20+
<h4>A simple and clean programming language</h4>
21+
</div>
22+
</main>
23+
</body>
24+
</html>

index.jade

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
doctype html
2+
html(lang="en")
3+
head
4+
title The Sol Programming Language
5+
link(href="style.css" type="text/css" rel="stylesheet")
6+
7+
body
8+
header
9+
h1 Sol
10+
nav
11+
ul
12+
li Home
13+
li Github
14+
15+
main
16+
#jumbotron
17+
h1 Sol
18+
h4 A simple and clean programming language

style.css

+24-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

style.css.map

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

style.scss

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
@import "variables";
2+
3+
* {
4+
padding: 0px;
5+
margin: 0px;
6+
}
7+
8+
.header_col {
9+
color: $header-color;
10+
background-color: $header-bg-color;
11+
}
12+
13+
header {
14+
@extend .header_col;
15+
height: 3rem;
16+
padding: 5px;
17+
18+
h1 {
19+
float: left;
20+
}
21+
22+
nav {
23+
float: right;
24+
25+
ul {
26+
list-style-type: none;
27+
28+
li {
29+
display: inline;
30+
}
31+
}
32+
}
33+
}
34+
35+
main {
36+
clear: both;
37+
}

0 commit comments

Comments
 (0)