Files
html5-restaurant/public/css/style.css
2016-03-02 16:40:01 +01:00

93 lines
1.3 KiB
CSS

html, body {
font-family: 'Bitter', sans-serif;
font-weight: 400;
font-size: 1em;
background-color: #121212;
}
.orange {
background-color: #FF731A;
padding: 50px;
}
.graygray {
background-color: #121212;
color: #E3D190;
}
.row {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin: 0;
}
.center-page > h1, .center-page > h2 {
text-align: center;
}
.center-page > table {
margin: 0 auto;
}
.center-page > * > * {
margin: initial;
}
.center-page > table {
width: 80vw;
}
.center-page tr:nth-child(2n) {
background-color: #222222;
color: #E3D190;
}
.center-page tr:nth-child(2n+1) {
background-color: #FF731A;
}
.center-page td:nth-child(2) {
text-align: right;
}
.center-page td {
padding: .8em;
}
.center-page td > p {
margin: 0;
padding: 0;
font-size: .7em;
}
.center-page > h1, .center-page > h2 {
margin-bottom: 1em;
color: #E3D190;
text-shadow: 0.1em 0.1em 0.2em;
}
.center-page > h1:not(:first-child) {
margin-top: 3em;
}
.center-page > table {
margin-bottom: 3em;
}
/* Bootstrap changes */
.navbar, .dropdown-menu {
margin-bottom: 0;
border-radius: 0;
}
.dropdown-menu {
background-color: #222222;
border: 1px solid #E3D190;
}
.dropdown-menu > li > a {
color: #E3D190;
}