This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
position: relative; | |
} | |
footer { | |
position: absolute; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
padding: 1rem; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url(https://fonts.googleapis.com/css?family=Pacifico); //CSS import | |
@import "helper/placeholders"; | |
@import "helper/mixins"; | |
@import "helper/variables"; | |
h1 { | |
font-family: Roboto, sans-serif; | |
@include center; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url(https://fonts.googleapis.com/css?family=Pacifico); //CSS import | |
@import "helper/placeholders"; | |
@import "helper/mixins"; | |
@import "helper/variables"; | |
.absolute { | |
position: absolute | |
} | |
h1 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HTML/CSS | |
Command Line <----- Added | |
Javascript | |
Git <----- Added | |
Jquery | |
Angular | |
Learn Sass <----- Moved down |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.controller('HomeController', ['$scope', 'suggestions', function($scope, suggestions) { | |
$scope.posts = suggestions.posts; | |
$scope.addSuggestion = function(index) { | |
if ($scope.title === "" | !$scope.title) { | |
return | |
} | |
$scope.posts.push({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
list = [1, 2, 3] | |
list2 = [3] | |
for n in list: | |
if n in list2: | |
del list2[list2.index(n)] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
directive element: | |
<app-info info="move"></app-info> | |
directive | |
app.directive('appInfo', function() { | |
return { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="supporting"> | |
<div class="container"> | |
<div class="col"> | |
<h2>Move</h2> | |
<p>Become more active by tracking your runs, rides, and walks.</p> | |
</div> | |
<div class="clearfix"></div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
delete everything |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
background: url(images/bg.jpg) no-repeat center center fixed; | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
} |
OlderNewer