-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
94 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,51 @@ html | |
h1 Madame Tout-le-Monde | ||
h2 [email protected] | github.com/you | ||
main | ||
section | ||
h2 Education | ||
hr | ||
article | ||
.columns | ||
h3.left School of Mom and Pop | ||
.right Springfield | ||
.columns | ||
.left Bachelor in Birdwatching | ||
.right 1872-1876 | ||
ul | ||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua | ||
li Elit at imperdiet dui accumsan | ||
li Etiam sit amet nisl purus in mollis | ||
section | ||
h2 Skills | ||
hr | ||
p <Strong>Programming languages:</strong> Whitespace, LOLCODE, ArnoldC, Brainfuck | ||
p <Strong>Technologies:</strong> Flying through the clouds | ||
section | ||
h2 Work Experience | ||
hr | ||
article | ||
.columns | ||
h3.left Acme Co. | ||
.right Anytown, Ruritania | ||
h3.left Acme Corporation | ||
.right Anytown | ||
ul | ||
li Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas vitae faucibus lorem, vel efficitur est. Donec elementum eget elit sit amet mollis. | ||
li Proin sed nibh consequat, faucibus urna vitae, tempus nibh. Aliquam quis diam magna. Quisque eu dignissim mi, vel sagittis felis. Nullam lacinia lacus ut urna efficitur, a varius sapien interdum. | ||
li Fusce et lectus ac est interdum ullamcorper. Nulla ac purus vel justo fringilla venenatis. Sed et purus hendrerit, pulvinar justo sed, porta nunc. | ||
article | ||
.columns | ||
h3.left Ace Inc. | ||
.right Somewhere Over the Rainbow | ||
ul | ||
li Euismod elementum nisi quis eleifend | ||
li Neque sodales ut etiam sit amet nisl purus in | ||
li Iaculis eu non diam phasellus vestibulum lorem | ||
li Arcu risus quis varius quam quisque | ||
article | ||
.columns | ||
h3.left Nozama | ||
.right Main Street | ||
ul | ||
li Ipsum faucibus vitae aliquet nec | ||
li Quis lectus nulla at volutpat | ||
li Massa ultricies mi quis hendrerit dolor magna eget est | ||
li Maecenas ultricies mi eget mauris pharetra et ultrices. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,54 @@ | ||
html { | ||
font-size: 18px; | ||
} | ||
|
||
body { | ||
margin: 2.5rem; | ||
} | ||
|
||
header { | ||
text-align: center; | ||
} | ||
|
||
h1 { | ||
text-transform: uppercase; | ||
font-size: 2rem; | ||
} | ||
|
||
h2, h3 { | ||
font-size: 1rem; | ||
} | ||
|
||
h1, h2, h3, p, ul { | ||
margin: 0; | ||
} | ||
|
||
ul { | ||
padding-left: 1rem; | ||
} | ||
|
||
main { | ||
h2 { | ||
text-transform: uppercase; | ||
} | ||
} | ||
|
||
section { | ||
margin-top: 1rem; | ||
} | ||
|
||
.columns { | ||
width: 100%; | ||
} | ||
|
||
.columns, ul { | ||
clear: both; | ||
} | ||
|
||
.left { | ||
float: left; | ||
} | ||
|
||
.right { | ||
float: right; | ||
} |