From 16bd80ab2f73926a8d8a1d75a6b901e6056c5b49 Mon Sep 17 00:00:00 2001 From: Steven Zarrella Date: Tue, 29 Aug 2017 10:57:56 -0400 Subject: [PATCH 1/4] added name to README file --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a38d4d6..f06b02f 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,5 @@ assignment_bootstrap_sprint Pick yourself up! [A Bootstrap, HTM5 and SASS project from the Viking Code School](http://www.vikingcodeschool.com) + +Steven Zarrella \ No newline at end of file From 6d0cfbdc12cab079d5ee234684aa174fd1aeaa45 Mon Sep 17 00:00:00 2001 From: Steven Zarrella Date: Tue, 29 Aug 2017 10:59:47 -0400 Subject: [PATCH 2/4] added index & styles files --- index.html | 0 styles.css | 0 styles.scss | 0 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 index.html create mode 100644 styles.css create mode 100644 styles.scss diff --git a/index.html b/index.html new file mode 100644 index 0000000..e69de29 diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..e69de29 diff --git a/styles.scss b/styles.scss new file mode 100644 index 0000000..e69de29 From 048b1d85845dbacb6becc925f739684dd26b91a7 Mon Sep 17 00:00:00 2001 From: Steven Zarrella Date: Wed, 30 Aug 2017 14:54:39 -0400 Subject: [PATCH 3/4] navbar and jumbotron complete --- .../styles.scssc | Bin 0 -> 1696 bytes index.html | 62 ++++++++++++++++++ styles.css | 5 ++ styles.css.map | 7 ++ styles.scss | 4 ++ 5 files changed, 78 insertions(+) create mode 100644 .sass-cache/3a45d65d7c1d54d0d5b8e17a294d868692620048/styles.scssc create mode 100644 styles.css.map diff --git a/.sass-cache/3a45d65d7c1d54d0d5b8e17a294d868692620048/styles.scssc b/.sass-cache/3a45d65d7c1d54d0d5b8e17a294d868692620048/styles.scssc new file mode 100644 index 0000000000000000000000000000000000000000..e6119d0348d02f599bd9d6092fd85a91aaae338a GIT binary patch literal 1696 zcmb_cU2oeq6!pU(+e)%zExNdIn;IUrq}^&eNu3XJz_@iOU|<-E+1pDV1WLMgxJe>M z(rb;P|9zMGa4R=^n_oB;n zpIuzQSro=_c^SWm$5-bsF2b`>czNZ2){^Amlp90HOal<|o0Rrf8N)XDoJF@Hi8W+5 z-e%A;0T;AOe5P@I<4yYQP{u2dc-J#>k14JV#DP0AlJtuPQ%E4PQWNr0rYWDo-%H3M zXptS3LK=cLuF>Po;3}?3x83<1C!U~x+={-cS&E$M;z~XX;K^EsJw3{E&N5aR}4&n%* zA_Y=g&?A>f?-zf?l609Vi4SV{=)*QWkRR%K^zlbuTl8?!-!pcF3Jy$UjE7XwCzA9E z$dj@o8s`;)Fe_srZ6PF$2AcH0AO3Do(4k0qbb4|={29z&R;uAkbj=X$CKj2KBM33t zSj|;nlopwFU63LTJPH1XN*!iUz`&^(yx}^-2{Dp>>Ct^Bn9nQ^jc8Esrn%wp*IFv) z@IAWc%)O_0?8fUk-XVv$#s1;R5{<8U7obU>#h^4q+~RN{TcA~dQzQ@z#yHiRv?D(j zwuwgBUkmHLy7Z78&?l@*zZMPh1ygv_z^pRM-;!1aZ;*_JbI>z({2%rFyX%qte2(rg z85`6x9#jZOr(p4pl+uYMd^W67B>kq8C=MQ(~{ZzI^WXo z=yS(XYlEd0@^Y}o=)MlChK?mVpu;*XcNO?ROTECT5QMQ>gU-6aNlma43j1+=zShF4 zP_xdul!sVxR0~D%1;V!|sGjXvDI>lQIGZX#*G&39xM#Ze&hO!`Vh~MDdd`Eiwp|cQ bdX7WtzxQ*B-J?>sn1fJ%JG=@IJ)Qjv-JIjr literal 0 HcmV?d00001 diff --git a/index.html b/index.html index e69de29..4e24420 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,62 @@ + + + + + + + + Bootstrap 101 Template + + + + + + + + + +
+
+

Hello, world!

+

Vice gentrify man braid franzen, taiyaki portland food truck selfies chillwave cred trust fund. Portland migas man braid small batch. Skateboard cornhole etsy, sriracha tote bag taxidermy crucifix edison bulb shabby chic blue bottle next level truffaut vape.

+

+ Learn more » +

+ + + +
+
+ +
+ + + + + + + diff --git a/styles.css b/styles.css index e69de29..67d70a5 100644 --- a/styles.css +++ b/styles.css @@ -0,0 +1,5 @@ +body { + padding-top: 50px; + padding-bottom: 20px; } + +/*# sourceMappingURL=styles.css.map */ diff --git a/styles.css.map b/styles.css.map new file mode 100644 index 0000000..6a4d820 --- /dev/null +++ b/styles.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "AAAA,IAAK;EACD,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,IAAI", +"sources": ["styles.scss"], +"names": [], +"file": "styles.css" +} \ No newline at end of file diff --git a/styles.scss b/styles.scss index e69de29..ec85b5d 100644 --- a/styles.scss +++ b/styles.scss @@ -0,0 +1,4 @@ +body { + padding-top: 50px; + padding-bottom: 20px; +} From 6323ec65d1b4dc848f5b2ac7bea955b01001939c Mon Sep 17 00:00:00 2001 From: Steven Zarrella Date: Wed, 30 Aug 2017 15:25:40 -0400 Subject: [PATCH 4/4] project finished --- .../styles.scssc | Bin 1696 -> 1695 bytes index.html | 38 +++++++++++++++--- styles.scss | 2 +- 3 files changed, 33 insertions(+), 7 deletions(-) diff --git a/.sass-cache/3a45d65d7c1d54d0d5b8e17a294d868692620048/styles.scssc b/.sass-cache/3a45d65d7c1d54d0d5b8e17a294d868692620048/styles.scssc index e6119d0348d02f599bd9d6092fd85a91aaae338a..23ec8292c63d547ab4c8a408b5219c976b424cbb 100644 GIT binary patch delta 61 zcmZ3$JD+!gm_|}sQmTbXT9T!SiIIhQqNS;+X{x0`ib-;6vZ;l6s+mPvs)>b}nej%u RPpph~lMUG{Cug&n0st$J5v2eC delta 63 zcmbQwyMT9sm_}-%sacw(xv6DJN|I?(im|zQs&R5sN~(oLib;y8rJ0F&lCeROh2=)O TPppjglMUG{8M!8Bv6%t@Sj-X# diff --git a/index.html b/index.html index 4e24420..47f2bca 100644 --- a/index.html +++ b/index.html @@ -39,21 +39,47 @@ -
+

Hello, world!

Vice gentrify man braid franzen, taiyaki portland food truck selfies chillwave cred trust fund. Portland migas man braid small batch. Skateboard cornhole etsy, sriracha tote bag taxidermy crucifix edison bulb shabby chic blue bottle next level truffaut vape.

Learn more »

+
+
+
+
+
+

Heading

+

Yuccie intelligentsia mustache ennui, cronut pork belly knausgaard cred blue bottle ugh coloring book godard palo santo. Farm-to-table taxidermy wolf leggings, adaptogen fashion axe lomo green juice franzen.

+

+ View details » +

+
+
+

Heading

+

Yuccie intelligentsia mustache ennui, cronut pork belly knausgaard cred blue bottle ugh coloring book godard palo santo. Farm-to-table taxidermy wolf leggings, adaptogen fashion axe lomo green juice franzen.

+

+ View details » +

+
+
+

Heading

+

Yuccie intelligentsia mustache ennui, cronut pork belly knausgaard cred blue bottle ugh coloring book godard palo santo. Farm-to-table taxidermy wolf leggings, adaptogen fashion axe lomo green juice franzen.

+

+ View details » +

+
+
+
+
+
+

© 2017 Company, Inc.

+
-
- - -
- diff --git a/styles.scss b/styles.scss index ec85b5d..ae63d5c 100644 --- a/styles.scss +++ b/styles.scss @@ -1,4 +1,4 @@ body { padding-top: 50px; padding-bottom: 20px; -} +} \ No newline at end of file