kcalculator/style.css
Timon Ringwald 1d0ad7f222 removed logs
2022-09-09 17:22:52 +02:00

239 lines
3.5 KiB
CSS

@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url("/icons.ttf");
src: local('Material Icons'),
local('MaterialIcons-Regular'),
url("/icons.ttf") format('truetype');
}
.material-icons {
transform: translateY(0.1em);
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 1em; /* Preferred icon size */
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
user-select: none;
/* Support for all WebKit browsers. */
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
}
* {
margin: 0;
padding: 0;
}
html, body {
min-height: 100vh;
font-size: 100%;
}
header {
font-size: 1.5rem;
line-height: 5em;
text-align: center;
background-color: #add8e6;
color: #333;
}
#food-search-container {
margin: 1em;
text-align: center;
}
#food-search {
margin-bottom: 0.25em;
border: 1px solid darkgray;
border-radius: 0.15em;
padding: 0.5em;
outline: 0;
box-sizing: border-box;
width: 20rem;
max-width: 100%;
}
#search-entries {
margin: 0 auto;
max-width: 100%;
display: flex;
flex-wrap: wrap;
gap: 0.25em;
justify-content: center;
}
.search-entry {
background-color: #eee;
border: 1px solid darkgray;
padding: 0.15em;
border-radius: 0.15em;
cursor: pointer;
transition: all 0.25s ease-in-out;
}
.search-entry:hover {
background-color: #ddd;
transition: all 0.25s ease-in-out;
}
th:first-child {
text-align: left;
}
td:not(:first-child) {
text-align: center;
}
tbody tr {
height: 2.5em;
}
tbody tr:not(:last-child) {
border-bottom: 1px solid lightgray;
}
table {
border-collapse: collapse;
}
tfoot {
font-weight: bold;
}
thead tr th {
border-bottom: 1px solid black;
}
tfoot tr td {
border-top: 1px solid black;
}
thead tr th,
tfoot tr td {
padding: 0.5em 0;
}
#menu-table,
#summary {
width: 60em;
max-width: calc(100% - 2em);
margin: 0 auto;
}
.delete-menu-item,
.summary-delete-icon {
color: #cc3d3d;
width: 1.5em;
height: 1.5em;
text-align: center;
cursor: pointer;
transition: all 0.25s ease-in-out;
}
.delete-menu-item:hover,
.delete-menu-item:focus {
scale: 1.5;
transition: all 0.25s ease-in-out;
}
.menu-item-kcal {
color: #333;
font-size: 0.65em;
}
.menu-item-amount,
.summary-amount {
font-size: 1rem;
border: 1px solid lightgray;
box-sizing: border-box;
outline: 0;
width: 3em;
text-align: right;
border-radius: 0.2em;
}
.menu-item-unit,
.summary-unit {
display: inline-block;
min-width: 1.5em;
}
.menu-item-amount:hover,
.menu-item-amount:focus {
border: 1px solid darkgray;
}
.menu-item-amount:invalid {
border: 1px solid red;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
@keyframes highlight {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
.menu-item-kcal-for-amount,
.menu-item-kcal-unit {
color: #555;
}
.menu-item-kcal-for-amount {
text-align: right;
display: inline-block;
min-width: 3em;
}
.menu-item-score {
font-size: 0.9rem;
padding: 0em 0.5em;
border-radius: 0.25em;
color: white;
user-select: none;
}
.menu-item-score.green {
background-color: darkgreen;
}
.menu-item-score.orange {
background-color: #e57e00;
}
.menu-item-score.red {
background-color: darkred;
}