Skip to content

Working on desktop and services #1528

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
273 changes: 226 additions & 47 deletions great-idea/css/index.css
Original file line number Diff line number Diff line change
@@ -1,66 +1,245 @@
/* 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;
/* Use your own code or past solution for Great Idea Web Page CSS here! */
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;
margin: 0 auto;
}

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

html, body {
height: 100%;
font-family: 'Titillium Web', sans-serif;
/* Your code starts here! */

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

header {
width: 100%;
display: flex;
}

.nav {
margin-top: 50px;
width: 600px;
justify-content: space-evenly;
display: flex;
}

.nav a {
float: left;
text-decoration: none;
color: gray;
padding: 10px 12px;
margin: 0 30px;
border-bottom: 2px solid transparent;
transition: border-bottom 0.5s ease-in-out;
}

h1, h2, h3, h4, h5 {
font-family: 'Bangers', cursive;
letter-spacing: 1px;
margin-bottom: 15px;
.nav a:hover {
text-decoration: none;
color: blueviolet;
border-bottom: 2px solid blueviolet;
}

/* Copy and paste your work from yesterday here and start to refactor into flexbox */
header .logo {
margin: 40px 0 0 100px;
}

.press {
display: flex;
margin-top: 72px;
justify-content: flex-end;
}

.press .set {
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;
}

.press .set button {
font-size: 16px;
width: 150px;
height: 32px;
margin-top: 10px;
cursor: pointer;
border-radius: 3px;
}
.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;
}
.main-content .middle-img {
display: block;
margin: 20px auto;
}

.main-content .bottom-content {
display: flex;
}
.main-content .bottom-content p {
padding-right: 30px;
}
.contact p {
margin: 10px 0;
}
footer {
text-align: center;
margin: 30px 0 15px;
}
Loading