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
304 changes: 262 additions & 42 deletions great-idea/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,64 +3,284 @@
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;
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;
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
line-height: 1;
}
ol, ul {
list-style: none;
ol,
ul {
list-style: none;
}
blockquote, q {
quotes: none;
blockquote,
q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
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;
}

/* Copy and paste your work from yesterday here and start to refactor into flexbox */
/* Set every element's box-sizing to border-box */
* {
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;
h1,
h2,
h3,
h4,
h5 {
font-family: "Bangers", cursive;
letter-spacing: 1px;
margin-bottom: 15px;
}

/* Your code starts here! */
* {
display: border-box;
}
html {
margin: 0 10%;
width: 1000px;
/* border: 2px solid red;*/
}
.navImg {
display: flex;
flex-direction: column;
justify-content: flex-start;
}

header {
/* border: 5px solid red; */
width: 100%;
padding: 18px;
/* margin: 10px; */
display: flex;
justify-content: space-evenly;
margin-bottom: 20px;

/*width: 600px;*/
/* display: flex; */
font-size: 20px;
}
a {
margin: 10px;
padding: 10px;
}

/* Copy and paste your work from yesterday here and start to refactor into flexbox */
.topc {
/* border: 2px solid green; */
display: flex;
justify-content: center;

padding-bottom: 10px;
border-bottom: 2px dotted black;
margin-bottom: 20px;

/* width: 43%;
margin: 1%;
padding: 5%; */

/* text-align: center; */
/* vertical-align: middle;
padding: 50px; */
}
.top {
width: 46%;
display: flex;
justify-items: right;
text-align: center;
align-items: center;
}

.title {
margin: 20px 0;
margin-bottom: 20px;
align-items: center;
}
h1 {
font-size: 50px;
}

.content {
display: flex;
/* border: 3px dotted blue; */
justify-content: space-around;
text-align: justify;
width: 100%;
/* margin: 10px;
padding: 10px; */
line-height: 1.5;
}
.c1 {
padding: 10px 0px 10px 0px;
margin: 10px;
}
.c2 {
padding: 10px;
margin: 10px;
}
.middle-img {
width: 100%;
margin: 10px 0;
}
.line {
/* margin: 20px; */
padding: 10px;
border-top: 2px dotted black;
border-bottom: 2px dotted black;
}
.spv {
/* border: 2px solid blue; */
display: flex;
padding: 2px;
/* margin: 10px; */
width: 100%;
text-align: center;
}
.l {
padding: 10px;
text-align: justify;
}
.copy {
text-align: center;
}
footer h2 {
padding: 10px;
}
Loading