Basic layout
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>KreditsWeb</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||
|
||||
{{content-for "head"}}
|
||||
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Route.extend({
|
||||
});
|
||||
@@ -0,0 +1,4 @@
|
||||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Route.extend({
|
||||
});
|
||||
@@ -0,0 +1,23 @@
|
||||
body {
|
||||
}
|
||||
|
||||
section {
|
||||
@include outer-container;
|
||||
margin-top: 6rem;
|
||||
|
||||
@include media($mobile) {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
header {
|
||||
@include span-columns(10);
|
||||
@include shift(1);
|
||||
text-align: center;
|
||||
// background-color: purple;
|
||||
|
||||
@include media($mobile) {
|
||||
@include span-columns(10);
|
||||
@include shift(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
*:hover, *:active, *:focus {
|
||||
outline: none;
|
||||
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
@import "bourbon";
|
||||
@import "settings/neat";
|
||||
@import "neat";
|
||||
@import "settings/breakpoints";
|
||||
@import "layout";
|
||||
|
||||
$font-family-sans: 'Open Sans', sans-serif;
|
||||
|
||||
body {
|
||||
font-family: $font-family-sans;
|
||||
font-size: 16px;
|
||||
color: #fff;
|
||||
background-image: url('/img/bg.jpg');
|
||||
background-repeat: none;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 900px) {
|
||||
body {
|
||||
background-size: cover;
|
||||
}
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
font-weight: normal;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
input, button {
|
||||
font-family: $font-family-sans;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
section {
|
||||
h2 {
|
||||
font-size: 2.8rem;
|
||||
font-weight: 300;
|
||||
color: lightblue;
|
||||
@include media($mobile) {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
$mobile: new-breakpoint(max-width 600px);
|
||||
@@ -0,0 +1,5 @@
|
||||
// $visual-grid: true;
|
||||
// $visual-grid-color: red;
|
||||
// $visual-grid-index: front;
|
||||
// $visual-grid-opacity: 0.5;
|
||||
$max-width: em(500, 12);
|
||||
@@ -0,0 +1,3 @@
|
||||
<main>
|
||||
{{outlet}}
|
||||
</main>
|
||||
@@ -0,0 +1,7 @@
|
||||
<section id="content">
|
||||
|
||||
<header>
|
||||
<h2>Kosmos Contributors</h2>
|
||||
</header>
|
||||
|
||||
</section>
|
||||
Reference in New Issue
Block a user