Skip to content

Commit

Permalink
Completed 06-Flex-Layout
Browse files Browse the repository at this point in the history
  • Loading branch information
popjam committed Nov 13, 2024
1 parent 3f705ac commit d782b41
Showing 1 changed file with 51 additions and 1 deletion.
52 changes: 51 additions & 1 deletion flex/06-flex-layout/style.css
Original file line number Diff line number Diff line change
@@ -1,19 +1,69 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
padding: 0;
margin: 0;
}

body {
height: 100vh;
margin: 0;
overflow: hidden;
font-family: Roboto, sans-serif;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.header,
.footer {
height: 50px;
display: flex;
justify-content: space-between;
align-items: center;
margin: 0px 20px;
}

.header ul,
.footer ul {
display: flex;
gap: 20px;
}

.content {
justify-self: center;
align-self: center;
display: flex;
flex-direction: column;
align-items: center;
}

ul,
ol {
list-style-type: none;
}

ul a,
ol a {
text-decoration: none;
color: #888888;
}

img {
width: 600px;
margin-bottom: 40px;
}

.buttons {
margin-top: 20px;
display: flex;
gap: 10px;
}

button {
font-family: Roboto, sans-serif;
border: none;
padding: 10px 15px;
border-radius: 8px;
background: #eee;
}
Expand All @@ -23,4 +73,4 @@ input {
border-radius: 16px;
padding: 8px 24px;
width: 400px;
}
}

0 comments on commit d782b41

Please sign in to comment.