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
245 changes: 217 additions & 28 deletions great-idea-website/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,64 +3,253 @@
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 {
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 {
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}

body {
line-height: 1;
}
ol, ul {

ol,
ul {
list-style: none;
}
blockquote, q {

blockquote,
q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {

blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

/* Set every element's box-sizing to border-box */
* {
box-sizing: border-box;
box-sizing: border-box;
}

html, body {
height: 100%;
font-family: 'Titillium Web', sans-serif;
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;
}




/* Your code starts here! */

.container {
width: 900px;
margin: 0 auto;
}


.navigation a {
display: inline-block;
color: grey;
text-decoration: none;
margin: 14px 57px 15px 0;
}

.navi-logo {
display: inline-block;
float: right;
}

.header-left {
display: inline-block;
text-align: center;
width: 50%;
margin-top: 78px;
vertical-align: top;
}

.header {
margin: 30px 0;
}

.innovate {
display: inline-block;
font-size: 70px;
text-align: center;

}

.middle-img {
margin: 40px 0;
}

.get-started-button {
background: white;
border: 1px solid black;
padding: 5px 40px;
}

section {
display: block;
margin: 40px 0;
}

.column-50 {
float: left;
width: 50%;
}

.column-33 {
float: left;
width: 33%;
}


.bottom-content {
display: inline-block;
width: 33%;
}

.l-bottom-text {
display: inline-block;
width: 33%;

}

.middle-bottom-text {
display: inline-block;
width: 33%;
}

.r-bottom-text {
display: inline-block;
width: 33%;

}

h1, h2, h3, h4, h5 {
font-family: 'Bangers', cursive;
letter-spacing: 1px;
margin-bottom: 15px;
.contact {
;
}

/* Your code starts here! */
.footercopyright {
font-size: 13px;
text-align: center;
}
Loading