Skip to content

Commit 6ba3c8a

Browse files
author
Jessica Lord
committed
get started
0 parents  commit 6ba3c8a

8 files changed

+26026
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
☁︎

css/style.css

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/* Stylez */
2+
body {font-family: Quicksand, Merriweather; margin: 0 auto; background: #efefef; line-height: 1.4em; padding: 12px;}
3+
.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; }
4+
5+
6+
a {color: #777; text-decoration: none;}
7+
a:hover {border-bottom: 1px solid #CCFF26; color: #222}
8+
9+
h4 {font-family: Quicksand, Source Sans Pro, "Helvetica Neue", "Arial", sans-serif; font-weight: 700;}
10+
p {font-weight: 400;}
11+
12+
article {padding: 8px 0;}
13+
section {padding-top: 24px;}
14+
15+
.container {width: 600px; margin: 0 auto; padding: 60px 20px;}
16+
.meta {text-transform: uppercase; font-family: Quicksand, "Helvetica Neue", "Arial", sans-serif; font-size: 11px; letter-spacing: .15em;}
17+
.meta a:hover {border-bottom: 1px solid #CCFF26; color: #222;}
18+
.inline-list {list-style: none; margin: 0; padding: 0;}
19+
.inline-list li {display: inline-block;}
20+
.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;}
21+
.name {font-family: Quicksand, "Ceviche One"; font-size: 60px;}
22+
.tleft {text-align: left;}
23+
.half {min-width: 270px; max-width: 320px; vertical-align: top; display: inline-block;}
24+
.right {float: right;}
25+
26+
/* Twitter */
27+
#tweet p {font-size: 12px;}
28+
29+
/* Instagrams */
30+
#instagram {margin: 0 auto;}
31+
.one-gram {display: inline;}
32+
.one-gram img {border: 5px solid #fafafa;}
33+
34+
35+
/*!
36+
Animate.css - http://daneden.me/animate
37+
Licensed under the MIT license
38+
*/
39+
40+
.animated {-webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both;}
41+
42+
@-webkit-keyframes flash {
43+
0%, 50%, 100% {
44+
opacity: 1;
45+
}
46+
47+
25%, 75% {
48+
opacity: 0;
49+
}
50+
}
51+
52+
@keyframes flash {
53+
0%, 50%, 100% {
54+
opacity: 1;
55+
}
56+
57+
25%, 75% {
58+
opacity: 0;
59+
}
60+
}
61+
62+
.flash {-webkit-animation-name: flash; animation-name: flash;}

favicon.png

1.55 KB
Loading

index.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<html>
2+
<head>
3+
<meta charset="utf-8">
4+
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
5+
<script type="text/javascript" src="js/tabletop1.3.4.js"></script>
6+
<script type="text/javascript" src="js/sheetsee.js"></script>
7+
<script type="text/javascript" src="js/socialbits.js"></script>
8+
<link href='http://fonts.googleapis.com/css?family=Ceviche+One|Merriweather|Source+Sans+Pro|Quicksand' rel='stylesheet' type='text/css'>
9+
<link rel="stylesheet" type="text/css" href="css/style.css">
10+
<link rel="icon" href="favicon.png" type="image/x-icon">
11+
<title>Hello World</title>
12+
</head>
13+
<body>
14+
<div class="wrapper">
15+
<div class="container">
16+
<header>
17+
<h1 class="name">Jane Smith</h1>
18+
<p>This is a short bio about what I like and what I do.</p>
19+
<ul class="inline-list meta">
20+
<li><a href="http://www.twitter.com/" target="_blank">Twitter</a></li>
21+
<li><a href="http://www.instagram.com/" target="_blank">Instagram</a></li>
22+
<li><a href="http://www.github.com/" target="_blank">GitHub</a></li>
23+
</ul>
24+
</header>
25+
</div>
26+
</div>
27+
</body>
28+
</html>

0 commit comments

Comments
 (0)