Get rid of resources directory. Unnecessary.

This commit is contained in:
Taylor Otwell
2014-12-05 16:35:05 -06:00
parent 2d6b5c20fc
commit 0f88129356
20 changed files with 1 additions and 1 deletions

View File

@@ -1,8 +0,0 @@
@import "variables";
@import "bootstrap";
@import "partials/buttons";
@import "partials/navigation";
@import "pages/auth";
@import "pages/welcome";

View File

@@ -1,4 +0,0 @@
#forgot-password-link {
padding-top: 7px;
vertical-align: middle;
}

View File

@@ -1,70 +0,0 @@
#welcome .jumbotron {
background: $primary;
color: lighten($primary, 35%);
margin-top: -20px;
}
#welcome .jumbotron__header,
.jumbotron h1 {
font-weight: bold;
color: white;
margin-top: 0;
margin-bottom: 25px;
}
#welcome .jumbotron__body {
max-width: 80%;
margin-bottom: 0;
line-height: 1.6em;
}
#welcome .jumbotron__header, .jumbotron h1 {
font-weight: lighter;
}
#welcome h2 {
margin-bottom: 20px;
}
#welcome .steps {
max-width: 80%;
padding-left: 0;
list-style: none;
counter-reset: welcome-steps;
}
#welcome .steps > .steps__item {
margin-bottom: 2.5em;
padding: 19px;
border: 1px solid $gray-lighter;
border-radius: 4px;
overflow: hidden;
// The step number.
&:before {
content: counter(welcome-steps);
counter-increment: welcome-steps;
width: 50px;
height: 50px;
float: left;
margin-right: 1em;
background: $gray-lighter;
border-radius: 50%;
font: bold 2em monospace;
text-align: center;
line-height: 49px;
}
.body {
float: left;
}
h2 {
font-weight: bold;
margin-top: 0;
}
p:last-child {
margin-bottom: 0;
}
}

View File

@@ -1,3 +0,0 @@
.fa-btn {
margin-right: 10px;
}

View File

@@ -1,5 +0,0 @@
.navbar-avatar {
border-radius: 999px;
margin: -11px 10px -10px 0;
padding: 0;
}

View File

@@ -1,3 +0,0 @@
$font-family-sans-serif: "Lato", Helvetica, Arial, sans-serif;
$primary: #F55430;