- login to caissa media temple
- go to databases
- go to staging database
- click on export
- do advanced export and download zipped sql file
- download
uploads
from staging(edited) - delete
uploads
on local - move
uploads
download from staging to local - login to
projects@kurtnoble
media temple - go to databases
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
cat knapsack/_animation.scss knapsack/_code.scss knapsack/_forms.scss knapsack/_layout.scss knapsack/_reset.scss knapsack/_tables.scss knapsack/_typography.scss knapsack/_ui.scss knapsack/_utilities.scss >> test/concat.scss |
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
section.section-title { | |
// rules | |
article { } | |
h1 { } | |
p { } | |
.specific-div { } | |
// Rules for only smaller sizes | |
@include media('<tablet') { | |
// rules |
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
// Create a basic animation triggered by waypoints | |
// Defaults to fade-in-up type animation, but useful for simple fades or slides. | |
@mixin waypoint-basic( | |
$y-start: 30px, | |
$opacity-start: 0, | |
$x-start: 0, | |
$y-end: 0, | |
$opacity-end: 1, | |
$x-end: 0, | |
$duration: .2s, |
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 | |
body | |
.container | |
header | |
nav navbar | |
div Adjective, SEO description – San Francisco Townhomes & Apartment Living. | |
nav.sticky | |
ul | |
li |
Example colors by use
// General
$color-primary: $cyan;
$color-secondary: $tomato;
// Backgrounds
$highlight-background: $white;
$main-background: $off-white;
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
:root | |
// font stack | |
--sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif | |
--helvetica: 'Helvetica Neue', Helvetica, Arial, sans-serif | |
--helvetica-neue: 'Helvetica Neue', HelveticaNeue, Helvetica, Arial, sans-serif | |
--serif: Georgia, Cambria, 'Times New Roman', Times, serif | |
--monospace: Monaco, Menlo, Consolas, 'Courier New', monospace | |
// defaults | |
--base-font-size: 16px |
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
/* breakpoints */ | |
:root { /* px size at 16px base font size */ | |
@custom-media --xs (width < 25em); /* 400px */ | |
@custom-media --s (width < 35.7em); /* 600px */ | |
@custom-media --m (width < 50em); /* 800px */ | |
@custom-media --l (width < 65.625em); /* 1050px */ | |
@custom-media --hd (width < 112.5 |
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
/* breakpoints */ | |
:root { /* px size at 16px base font size */ | |
@custom-media --xs (width < 20em); /* 320px */ | |
@custom-media --s (width < 28em); /* 448px */ | |
@custom-media --m (width < 48em); /* 768px */ | |
@custom-media --l (width < 64em); /* 1024px */ | |
@custom-media --xl (width < 80em); |
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 { | |
margin: 0 auto; | |
text-align: center; | |
font-size: 100%; | |
} | |
#content { | |
width: 98%; | |
padding: 3% 0% 0% 2%; | |
max-width: 900px; |