Skip to content

Commit

Permalink
First style for the Html page
Browse files Browse the repository at this point in the history
  • Loading branch information
proalaa committed Oct 6, 2018
1 parent 8c8a4d9 commit b20a4a3
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions css/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
html {
box-sizing: border-box;
height: 100%;
}

*,
*::before,
*::after {
box-sizing: inherit;
}

body {
display: flex;
margin: 0;
height: 100%;
}

.container {
margin: auto;
padding: 1em;
width: 80%;
}

.destination-container {
display: flex;
flex-flow: wrap;
justify-content: center;
}

.destination {
background: #03a9f4;
box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.4);
color: white;
margin: 0.5em;
min-height: 200px;
flex: 0 1 200px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}

h2 {
margin: 0;
transform: rotate(-45deg);
text-shadow: 0 0 5px #01579b;
}

#florida {
background-color: #03a9f4;
}

#paris {
background-color: #d32f2f;
}

0 comments on commit b20a4a3

Please sign in to comment.