Skip to content
This repository has been archived by the owner on Jun 9, 2021. It is now read-only.

Layout emfreshened! :) #5

Closed
wants to merge 1 commit into from
Closed
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
616 changes: 277 additions & 339 deletions 2012/index.html

Large diffs are not rendered by default.

138 changes: 127 additions & 11 deletions media/2012/css/moobile.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
/* Mobile fuck yeah! */

body {
background: rgb(255, 255, 254) !important;
body,
div#footerfix {
background: rgb(255, 255, 254) none !important;
}



header,
header nav {
width: 100% !important;
Expand All @@ -17,10 +20,80 @@ header nav {
display: none;
}

#logo {
div#wrapper {
width: 100% !important;
margin: 0;
background-color: #141414;
text-align: center;
padding-top: 0px;
padding-bottom: 465px;
}


a#logo {
display: none;
}

div#navigation {
float: none;
width: 100%;
padding: 5px 0;
}

ul#menu {
list-style: none;
margin: 0;
text-align: left;
display: block;
width: 100%;
}

ul#menu li {
display: block;
float: left;
}

ul#menu li a {
display: block;
color: #b4b4b4;
text-transform: uppercase;
font-size: 14px;
padding: 5px 15px;
text-decoration: none;
}

ul#menu li a.active {
color: #fff;
background: transparent none;
}

ul#menu li a:hover {color: #fff;}


div#socialmedia {
display: none;
}

div.corner {display: none;}


div#content {
width: 100%;
float: none;
background: #fff none;
}


div.page {
padding: 30px;
width: auto;
display: block;
position: relative;
background-color: #fff;
text-align: left;
}


.quarter {
width: 100% !important;
height: auto !important;
Expand All @@ -46,17 +119,60 @@ header nav {
padding: 0 10px;
}

footer {
position: static;
float: none;
padding: 0 10px;
width: auto !important;
height: auto !important;
}


#center .modal {
text-align: left;
width: 80%;
margin-left: -40%;
}

div#sponsors img {
max-width: 250px;
}


/* Let's check image sizes on footer */

@media only screen
and (max-width : 780px) {
div#sponsors img {
max-width: 200px;
}
}

@media only screen
and (max-width : 650px) {
div#sponsors img {
max-width: 180px;
}
}

@media only screen
and (max-width : 590px) {
div#sponsors img {
max-width: 150px;
}

div#wrapper {
padding-bottom: 395px;
}

div#footer {
height: 390px;
}
}

@media only screen
and (max-width : 500px) {
div#sponsors img {
max-width: 80px;
}

div#wrapper {
padding-bottom: 295px;
}

div#footer {
height: 290px;
}
}
Loading