Skip to content

Commit

Permalink
get started
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessica Lord committed Jun 30, 2014
0 parents commit 6ba3c8a
Show file tree
Hide file tree
Showing 8 changed files with 26,026 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
☁︎
62 changes: 62 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/* Stylez */
body {font-family: Quicksand, Merriweather; margin: 0 auto; background: #efefef; line-height: 1.4em; padding: 12px;}
.wrapper {box-sizing: border-box; background: #fff; box-shadow: 0 0 5px #888; box-shadow: 0 0 5px #888; padding: 0px 40px; min-height: 100%; overflow: auto; }


a {color: #777; text-decoration: none;}
a:hover {border-bottom: 1px solid #CCFF26; color: #222}

h4 {font-family: Quicksand, Source Sans Pro, "Helvetica Neue", "Arial", sans-serif; font-weight: 700;}
p {font-weight: 400;}

article {padding: 8px 0;}
section {padding-top: 24px;}

.container {width: 600px; margin: 0 auto; padding: 60px 20px;}
.meta {text-transform: uppercase; font-family: Quicksand, "Helvetica Neue", "Arial", sans-serif; font-size: 11px; letter-spacing: .15em;}
.meta a:hover {border-bottom: 1px solid #CCFF26; color: #222;}
.inline-list {list-style: none; margin: 0; padding: 0;}
.inline-list li {display: inline-block;}
.load {font-family: Quicksand, Source Sans Pro, "Helvetica Neue", "Arial", sans-serif; color: #CCFF26; font-weight: 900; border: 1px dashed #CCFF26; padding: 3px 4px; border-radius: 2px; opacity: .5;}
.name {font-family: Quicksand, "Ceviche One"; font-size: 60px;}
.tleft {text-align: left;}
.half {min-width: 270px; max-width: 320px; vertical-align: top; display: inline-block;}
.right {float: right;}

/* Twitter */
#tweet p {font-size: 12px;}

/* Instagrams */
#instagram {margin: 0 auto;}
.one-gram {display: inline;}
.one-gram img {border: 5px solid #fafafa;}


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license
*/

.animated {-webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both;}

@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}

25%, 75% {
opacity: 0;
}
}

@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}

25%, 75% {
opacity: 0;
}
}

.flash {-webkit-animation-name: flash; animation-name: flash;}
Binary file added favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="js/tabletop1.3.4.js"></script>
<script type="text/javascript" src="js/sheetsee.js"></script>
<script type="text/javascript" src="js/socialbits.js"></script>
<link href='http://fonts.googleapis.com/css?family=Ceviche+One|Merriweather|Source+Sans+Pro|Quicksand' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" href="favicon.png" type="image/x-icon">
<title>Hello World</title>
</head>
<body>
<div class="wrapper">
<div class="container">
<header>
<h1 class="name">Jane Smith</h1>
<p>This is a short bio about what I like and what I do.</p>
<ul class="inline-list meta">
<li><a href="http://www.twitter.com/" target="_blank">Twitter</a></li>
<li><a href="http://www.instagram.com/" target="_blank">Instagram</a></li>
<li><a href="http://www.github.com/" target="_blank">GitHub</a></li>
</ul>
</header>
</div>
</div>
</body>
</html>
Loading

0 comments on commit 6ba3c8a

Please sign in to comment.