Skip to content

Commit

Permalink
Challenge and read me files
Browse files Browse the repository at this point in the history
  • Loading branch information
BigKnell committed Jan 30, 2018
1 parent 800758e commit 5be2526
Show file tree
Hide file tree
Showing 27 changed files with 859 additions and 2 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added LESS-advanced/.DS_Store
Binary file not shown.
Binary file added LESS-advanced/css/.DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions LESS-advanced/css/contact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* Contact Styles */
.contact p {
margin: 40px 0;
}
29 changes: 29 additions & 0 deletions LESS-advanced/css/cta.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/* Call To Action (CTA) Styles */
.cta {
display: flex;
margin-top: 72px;
justify-content: flex-end;
}
.cta .cta-text {
font-size: 72px;
text-align: center;
letter-spacing: 5px;
display: flex;
justify-content: center;
flex-flow: column;
align-items: center;
margin: 0 82px 0 0;
}
.cta .cta-text button {
border: 1px double black;
font-size: 16px;
background: white;
width: 170px;
height: 32px;
margin-top: 10px;
cursor: pointer;
}
.cta .cta-text button:hover {
background: black;
color: white;
}
5 changes: 5 additions & 0 deletions LESS-advanced/css/footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/* Footer Styles */
footer {
text-align: center;
margin: 40px 0 20px;
}
21 changes: 21 additions & 0 deletions LESS-advanced/css/general-styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
font-family: 'Titillium Web', sans-serif;
}
h1,
h2,
h3,
h4,
h5 {
font-family: 'Bangers', cursive;
letter-spacing: 1px;
margin-bottom: 10px;
}
.container {
width: 880px;
margin: auto;
}
22 changes: 22 additions & 0 deletions LESS-advanced/css/header.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
header {
width: 100%;
display: flex;
}
header nav ul {
margin-top: 140px;
width: 610px;
justify-content: space-between;
display: flex;
}
header nav ul li a {
text-decoration: none;
color: #b0b0b0;
}
header nav ul li a:hover {
text-decoration: underline;
color: black;
}
header .logo {
align-self: flex-end;
margin: 28px 0 0 91px;
}
233 changes: 233 additions & 0 deletions LESS-advanced/css/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,233 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
font-family: 'Titillium Web', sans-serif;
}
h1,
h2,
h3,
h4,
h5 {
font-family: 'Bangers', cursive;
letter-spacing: 1px;
margin-bottom: 10px;
}
.container {
width: 880px;
margin: auto;
}
header {
width: 100%;
display: flex;
}
header nav ul {
margin-top: 140px;
width: 610px;
justify-content: space-between;
display: flex;
}
header nav ul li a {
text-decoration: none;
color: #b0b0b0;
}
header nav ul li a:hover {
text-decoration: underline;
color: black;
}
header .logo {
align-self: flex-end;
margin: 28px 0 0 91px;
}
/* Call To Action (CTA) Styles */
.cta {
display: flex;
margin-top: 72px;
justify-content: flex-end;
}
.cta .cta-text {
font-size: 72px;
text-align: center;
letter-spacing: 5px;
display: flex;
justify-content: center;
flex-flow: column;
align-items: center;
margin: 0 82px 0 0;
}
.cta .cta-text button {
border: 1px double black;
font-size: 16px;
background: white;
width: 170px;
height: 32px;
margin-top: 10px;
cursor: pointer;
}
.cta .cta-text button:hover {
background: black;
color: white;
}
/* Main Content Styles */
.main-content {
border-top: 2px solid black;
border-bottom: 2px solid black;
margin: 75px 0 35px 0;
padding: 35px 0;
font-size: 16px;
line-height: 18px;
}
.main-content .top-content {
display: flex;
justify-content: space-around;
}
.main-content .middle-img {
display: block;
margin: 30px auto;
}
.main-content .bottom-content {
display: flex;
justify-content: space-around;
}
.main-content .bottom-content p {
padding-right: 20px;
}
/* Contact Styles */
.contact p {
margin: 40px 0;
}
/* Footer Styles */
footer {
text-align: center;
margin: 40px 0 20px;
}
24 changes: 24 additions & 0 deletions LESS-advanced/css/main-content.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/* Main Content Styles */
.main-content {
border-top: 2px solid black;
border-bottom: 2px solid black;
margin: 75px 0 35px 0;
padding: 35px 0;
font-size: 16px;
line-height: 18px;
}
.main-content .top-content {
display: flex;
justify-content: space-around;
}
.main-content .middle-img {
display: block;
margin: 30px auto;
}
.main-content .bottom-content {
display: flex;
justify-content: space-around;
}
.main-content .bottom-content p {
padding-right: 20px;
}
Loading

0 comments on commit 5be2526

Please sign in to comment.