Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
310 changes: 309 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,309 @@
/* Use your CSS from RWD - I here. IF you don't have CSS, use the solution CSS from RWD - I*/
/* 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 {
}

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: 15px;
}

/* End of reset */

html { font-size: 62.5%; }

* {
box-sizing: border-box;
font-size: 1.6rem;
}

body {
max-width: 880px;
margin: 0 auto;
}

header {
display: flex;
margin-top: 20px;
margin-bottom: 40px;
}

nav {
display: flex;
justify-content: space-around;
margin-top: 10px;
height: 100%;
width: 75%;
}

nav a {
text-decoration: none;
color: lightgray;
}

.logo {
margin: 0 auto;
width: 100%;
padding: 0;
}

.title {
display: flex;
justify-content: space-around;
height: 400px;
width: 100%;
border-bottom: 1px solid black;
}

.titleContent {
width: 50%;
height: 100%;
}

#get-started {
text-align: center;
margin: auto;
width: 50%;
}

#get-started h1 {
font-size: 4rem;
padding-top: 100px;
padding-bottom: 10px;
}

#get-started a {
border: 1px solid black;
text-decoration: none;
color: black;
font-size: 1.8rem;
padding-left: 9.35%;
padding-right: 9.35%;
padding-top: 4px;
padding-bottom: 4px;
}

.titleContent #img-header {
width: 100%;
height: 100%;
padding: 40px;
}

.contentContainer {
display: flex;
justify-content: space-around;
}

.contentContainer .middle-img {
width: 100%;
}

section {
height: 200px;
width: 47%;
padding-top:40px;
}

#services, #vision, #product {
width: 33%;
}

main {
width: 100%;
height: 600px;
border-bottom: 1px solid black;
}

#contact {
padding-top: 40px;
}

footer p {
padding-top: 40px;
padding-bottom: 80px;
text-align: center;
}

@media (max-width: 800px) {

body {
width: 800px;
}

header {
flex-direction: column-reverse;
width: 95%;
align-items: center;
margin-bottom: 10px;
}

nav {
margin-top: 30px;
}

#get-started h1 {
padding-top: 70px;
}

#img-header {
display: none;
}

section {
width: 45%;
padding-right: 5px;
}

#services, #vision, #product {
width: 29%;
}

#contact {
padding-left: 2%;
}

.middle-img {
width: 100%;
}

.title {
width: 90%;
margin-left: 15px;
border-bottom: 2px solid black;
}

main {
width: 90%;
margin-left: 15px;
border-bottom: 2px solid black;
}

}

@media (max-width: 500px) {

body {
width: 500px;
}

header {
flex-direction: column-reverse;
width: 100%;
align-items: center;
margin-bottom: 10px;
}

nav {
width: 100%;
margin-top: 10px;
flex-direction: column;
align-items: center;
}

nav a {
width: 100%;
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
border-bottom: 1px solid black;
padding-bottom: 40px;
}

#services-nav {
width: 100%;
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
border-bottom: 1px solid black;
border-top: 1px solid black;
padding-top: 40px;
}

.title {
width: 100%;
margin-left: 7px;
border-bottom: 2px solid black;
}

main {
width: 100%;
height: 1070px;
margin-left: 7px;
border-bottom: 2px solid black;
}

.contentContainer {
flex-direction: column;
}

.content {
width: 100%;
}

.middle-img {
width: 90%;
}

#services, #vision, #product {
width: 100%;
}

}
Loading