Skip to content

Commit

Permalink
Add styling for buttons and food info
Browse files Browse the repository at this point in the history
  • Loading branch information
kmuncie committed Oct 24, 2017
1 parent 4a3b2e2 commit a12c5f9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,31 @@ ul {
display: block;
}
}

%button {
display: inline-block;
font-size: 15px;
padding: 10px;
background-color: #456882;
color: white;
font-weight: bold;
box-shadow: 2px 2px 5px black;
margin: 10px 0;
}

.backButton {
@extend %button;
}

.foodInfo {
background-color: #ffffe2;
border: 1px solid #ccc;
padding: 10px;
p {
margin: 0;
font-weight: bold;
}
a {
@extend %button;
}
}

0 comments on commit a12c5f9

Please sign in to comment.