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
125 changes: 124 additions & 1 deletion great-idea/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,127 @@ h1, h2, h3, h4, h5 {
margin-bottom: 15px;
}

/* Copy and paste your work from yesterday here and start to refactor into flexbox */
/* my index code starts here */

.navbar {
display: flex;
position: fixed;
top: 0;
width: 100%;
background-color: yellow;
}

nav {
width: 950px;
height: 50px;
display: flex;
justify-content: space-evenly;
align-items: center;
}

a {
text-align: center;
color: slategrey;
text-decoration: none;
}

.logo {
height: 50%;
padding-top: 0.5%;

}

header {
margin-top: 9%;
display: flex;
justify-content: space-evenly;
align-items: center;
}

header h1 {
display: flex;
flex-direction: column;
align-items: center;
height: 225px;
width: 425px;
font-size: 95px;
text-align: center;
}

button {
border: 1px solid slategrey;
height: 25px;
width: 150px;
}

.header-img {
margin-bottom: 5%;
}

hr {
width: 75%;
align: center;
}

.TopSection {
display: flex;
justify-content: space-evenly;
margin: 0 14%;
}

p {
text-align: left;
}

.topsection-left {
height: 100px;
width: 450px;
}

.topsection-right {
height: 100px;
width: 450px;
}

.middle-img {
margin: 1% 14%;
}

.BottomSection {
display: flex;
justify-content: space-evenly;
margin: 0 14%;
}

.BottomSection-Left {
height: 150px;
width: 280px;
}

.BottomSection-Middle {
height: 150px;
width: 280px;
}

.BottomSection-Right {
height: 150px;
width: 280px;
}

.contact {
/* display: block; */
display: flex;
flex-direction: column;
width: 200px;
height: 150px;
margin-left: 14%;
}

.contact p {
line-height: 25px;
}

footer {
text-align: center;
margin: 50px;
}
192 changes: 192 additions & 0 deletions great-idea/css/services.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,192 @@
/* 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;
}

/* 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;
}

/* my index code starts here */

.services-nav {
display: flex;
}

nav {
width: 75%;
display: flex;
justify-content: space-evenly;
align-items: center;
margin-left: 0 14%;

}

.services-navbar a {
text-decoration: none;
color: slategrey;
}

.services-header-img {
display: block;
margin: 2% 14%;
}

.services {
margin: 2% 14%;
}

hr {
width: 72%;
}

.middle-section {
display: flex;
flex-wrap: wrap;
margin: 2% 14%;
justify-content: space-between;
align-content: space-around;
}

.digital-design {
display: flex;
flex-direction: column;
background-color: lightgrey;
width: 400px;
margin: 2% 0;
border: 1px solid;
padding: 2%;
}

.ux-ui {
display: flex;
flex-direction: column;
background-color: lightgrey;
width: 400px;
margin: 2% 0;
border: 1px solid;
padding: 2%;
}

.digital-marketing {
display: flex;
flex-direction: column;
background-color: lightgrey;
width: 400px;
margin: 2% 0;
border: 1px solid;
padding: 2%;
}

.web-dev {
display: flex;
flex-direction: column;
background-color: lightgrey;
width: 400px;
margin: 2% 0;
border: 1px solid;
padding: 2%;
}

.ios-dev {
display: flex;
flex-direction: column;
background-color: lightgrey;
width: 400px;
margin: 2% 0;
border: 1px solid;
padding: 2%;
}

.android-dev {
display: flex;
flex-direction: column;
background-color: lightgrey;
width: 400px;
margin: 2% 0;
border: 1px solid;
padding: 2%;
}

button {
width: 100px;
height: 25px;
margin-top: 3%;
}

.servicesbottomsection {
display: flex;
margin: 2% 14%;
justify-content: space-between;
}

.some-facts {
width: 400px;
}

li {
margin-top: 3%;
margin-left: 5%;
list-style-type: disc;
}

footer {
text-align: center;
margin-top: 3%;
}
Loading