Skip to content

Instantly share code, notes, and snippets.

View Qsppl's full-sized avatar
💭
AAAAAAAAAAAAAAAAAAAAAAAAa

Tomoe Qsppl

💭
AAAAAAAAAAAAAAAAAAAAAAAAa
View GitHub Profile
@import 'https://fonts.googleapis.com/css?family=Open+Sans';
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Open Sans', sans-serif;
line-height: 1.75em;
$(document).ready(function() {
function heightDetect() {
$(".main_head").css("height", $(window).height());
};
heightDetect();
$(window).resize(function() {
heightDetect();
});