Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed Berlin-Ville-cmyk.jpg
Binary file not shown.
Binary file removed Berlin-Ville.jpg
Binary file not shown.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2014 JSFest.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Binary file removed Oakland-cmyk-half.jpg
Binary file not shown.
Binary file removed Oakland-cmyk.jpg
Binary file not shown.
Binary file removed Oakland.jpg
Binary file not shown.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# [jsfest.com](http://http://jsfest.com/)

This is a website for JSFest.

## Fonts
[Adelle Sans](https://typekit.com/fonts/adelle-sans) and [FF Meta Serif Web Pro](https://typekit.com/fonts/ff-meta-serif-web-pro) are served through Typekit. For modifications ping [@thefoxis](https://github.com/thefoxis).

## Pictures
All photos are the property of credited owners, allowed for non-commercial use by [Creative Commons](http://creativecommons.org/).

## Contributors

* [Mikeal Rogers](https://github.com/mikeal)
* [Karolina Szczur](https://github.com/thefoxis)

## License
MIT
Binary file removed San_Francisco-cmyk-half.jpg
Binary file not shown.
Binary file removed San_Francisco-cmyk.jpg
Binary file not shown.
Binary file removed San_Francisco.jpg
Binary file not shown.
264 changes: 264 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,264 @@
/*===================================================================
*
* JSFest.com
* Made by the community, for the community
* Created by @mikeal
* Designed and coded by @fox
*
* ❤︎ ✌︎
*
===================================================================*/

html {
font-size: 100%;
}

*, *:after, *:before {
box-sizing: border-box;
}

body {
border-top: 10px solid black;
font: 500 1.125rem/1.5 "ff-meta-serif-web-pro", Georgia, Times, serif;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
text-align: center;
}

::-moz-selection {
background: #FFEB00;
}

::selection {
background: #FFEB00;
}

.cf:before,
.cf:after {
content: " ";
display: table;
}

.cf:after {
clear: both;
}

a {
color: black;
border-bottom: 3px solid #FFEB00;
text-decoration: none;
outline: none;
}

a:hover {
color: #CAB000;
border-color: #CAB000;
transition: all .5s ease-in;
-webkit-transition: all .5s ease-in;
}

/*-------------------------------------------------------------------
*
* Headings
*
-------------------------------------------------------------------*/

h1, h2, h3, h4, h5 {
font-family: "adelle-sans", Helvetica, Arial, sans-serif;
font-weight: 800;
}

h1 {
position: absolute;
top: 0;
margin-top: 0;
font-size: 4rem;
}

h1 span {
display: inline-block;
margin-right: .5rem;
padding: 1.5rem 1rem 0 1rem;
background-color: #FFEB00;
}

h2 {
font-size: 2rem;
line-height: 1.2;
}

h3 {
font-size: 1.5rem;
}

ul {
padding: 0;
list-style: none;
}

.lead {
font-size: 1.75rem;
line-height: 1.25;
}

/*-------------------------------------------------------------------
*
* Event
*
-------------------------------------------------------------------*/

.event {
position: relative;
border: 5px solid black;
margin-bottom: 1.25rem;
}

.event h2 {
margin-top: 0;
}

.event p {
margin: 0;
}

.event-description {
padding: 1rem;
color: white;
background-color: black;
}

.event-description:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -0.25em;
}

.event-description-inner {
display: inline-block;
vertical-align: middle;
}

.event-description a {
color: white;
}

.event-past-badge {
display: inline-block;
margin-bottom: .5rem;
padding: .5rem 1rem;
background: red;
font-size: 1rem;
text-transform: uppercase;
}

.event-past-badge,
.photo-credit {
font-family: "adelle-sans", Helvetica, Arial, sans-serif;
}

.photo-credit {
position: absolute;
border: none;
color: white;
font-size: .8rem;
opacity: .8;
}

/*-------------------------------------------------------------------
*
* Footer
*
-------------------------------------------------------------------*/

footer {
margin: 3rem 0;
color: #333;
}

footer nav li {
display: inline-block;
}

footer nav a {
margin: 0 .3125rem;
}

/*-------------------------------------------------------------------
*
* Mobile
*
-------------------------------------------------------------------*/

@media screen and (max-width: 768px) {

.container {
padding: 0 2rem;
}

header {
margin-top: 9rem;
}

.event img {
max-width: 100%;
}

.event-description {
margin-top: -.5rem;
}

.photo-credit {
top: .25rem;
left: .5rem;
}

}

/*-------------------------------------------------------------------
*
* Desktop
*
-------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

.container {
max-width: 750px;
margin: 0 auto;
}

header {
margin-top: 11rem;
}

.lead {
margin-bottom: 4rem;
}

.event {
height: 250px;
overflow: hidden;
}

.event img,
.event-description {
float: left;
}

.event img {
width: 60%;
}

.event-description {
width: 40%;
height: 100%;
}

.photo-credit {
bottom: .25rem;
left: .5rem;
}

}
1 change: 1 addition & 0 deletions css/normalize.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/berlin.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/oakland.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/sf.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading