mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
removed backup css
This commit is contained in:
parent
f2e350f51d
commit
370206b967
9 changed files with 0 additions and 448 deletions
|
@ -1,20 +0,0 @@
|
||||||
label {
|
|
||||||
margin-top: 3em;
|
|
||||||
}
|
|
||||||
#button_newuser {
|
|
||||||
margin-top: 3em;
|
|
||||||
}
|
|
||||||
#text_user {
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
.adduser {
|
|
||||||
margin: 0 auto;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
#adduser-button-done {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 2em;
|
|
||||||
right: 2em;
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
body {
|
|
||||||
font-family: 'Open Sans', sans-serif;
|
|
||||||
}
|
|
|
@ -1,24 +0,0 @@
|
||||||
.installer {
|
|
||||||
margin: 0 auto;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
label {
|
|
||||||
margin-top: 3em;
|
|
||||||
}
|
|
||||||
#text_database {
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
#text_dbhost {
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
#text_user {
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
#text_passwd {
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
#button_install {
|
|
||||||
margin-top: 3em;
|
|
||||||
}
|
|
|
@ -1,38 +0,0 @@
|
||||||
#login {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.loginform {
|
|
||||||
width: 75%;
|
|
||||||
max-width: 30em;
|
|
||||||
font-size: 16px;
|
|
||||||
padding: 12px 20px 12px 40px;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
margin: .1em auto;
|
|
||||||
}
|
|
||||||
#rememberme {
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
#rememberme input {
|
|
||||||
margin-right: .4em;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
#loginButton {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
#wrongpw {
|
|
||||||
width: 100%;
|
|
||||||
margin: 0 auto;
|
|
||||||
color: red;
|
|
||||||
font-weight: 800;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
#logout {
|
|
||||||
width: 100%;
|
|
||||||
margin: 0 auto;
|
|
||||||
color: #4CAF50;
|
|
||||||
font-weight: 800;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
|
@ -1,116 +0,0 @@
|
||||||
#newRecipeForm {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
#safeRecipe {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
#newRecipeForm div font {
|
|
||||||
font-weight: 800;
|
|
||||||
padding-right: 1em;
|
|
||||||
}
|
|
||||||
#RecipeFormName {
|
|
||||||
font-size: 16px;
|
|
||||||
padding: .2em;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
}
|
|
||||||
#recipeDurationInput {
|
|
||||||
width: 3em;
|
|
||||||
font-size: 16px;
|
|
||||||
padding: .2em;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
margin-right: .5em;
|
|
||||||
}
|
|
||||||
#recipeDescription {
|
|
||||||
font-family: 'Open Sans', sans-serif;
|
|
||||||
font-size: 16px;
|
|
||||||
padding: .2em;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
width: 100%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
.ingredientLine {
|
|
||||||
display: flex;
|
|
||||||
margin-bottom: .1em;
|
|
||||||
}
|
|
||||||
.ingredientAmount {
|
|
||||||
width: 3em;
|
|
||||||
font-size: 16px;
|
|
||||||
padding: .2em;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
}
|
|
||||||
.ingredientUnit {
|
|
||||||
-webkit-appearance: none;
|
|
||||||
width: 3em;
|
|
||||||
margin-left: .5em;
|
|
||||||
font-size: 16px;
|
|
||||||
padding: .2em;
|
|
||||||
border: none;
|
|
||||||
color: white;
|
|
||||||
font-weight: 800;
|
|
||||||
background-color: #5f5f5f;
|
|
||||||
}
|
|
||||||
.ingredientName {
|
|
||||||
font-size: 16px;
|
|
||||||
padding: .2em;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
}
|
|
||||||
.ingredientAutocomplete {
|
|
||||||
position: relative;
|
|
||||||
margin-left: .5em;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column-reverse;
|
|
||||||
}
|
|
||||||
.ingredientAutocomplete-items {
|
|
||||||
position: absolute;
|
|
||||||
border: 1px solid #d4d4d4;
|
|
||||||
border-bottom: none;
|
|
||||||
border-top: none;
|
|
||||||
width: 100%;
|
|
||||||
z-index: 99;
|
|
||||||
transform: translateY(-2em);
|
|
||||||
}
|
|
||||||
.ingredientAutocomplete-items div {
|
|
||||||
padding: 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
background-color: #fff;
|
|
||||||
border-bottom: 1px solid #d4d4d4;
|
|
||||||
}
|
|
||||||
.ingredientAutocomplete-items div:hover {
|
|
||||||
background-color: #e9e9e9;
|
|
||||||
}
|
|
||||||
.ingredientAutocomplete-active {
|
|
||||||
background-color: DodgerBlue !important;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
.removeIngredient {
|
|
||||||
display: inline-block;
|
|
||||||
text-align: center;
|
|
||||||
padding: .1em .2em .3em .2em;
|
|
||||||
margin-left: .5em;
|
|
||||||
height: 1em;
|
|
||||||
width: 1em;
|
|
||||||
height: 20px;
|
|
||||||
width: 20px;
|
|
||||||
border-radius: 100%;
|
|
||||||
background-color: black;
|
|
||||||
color: white;
|
|
||||||
cursor: pointer;
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.addIngredient {
|
|
||||||
display: inline-block;
|
|
||||||
text-align: center;
|
|
||||||
padding: .1em .2em .3em .2em;
|
|
||||||
margin-left: .5em;
|
|
||||||
height: 1em;
|
|
||||||
width: 1em;
|
|
||||||
height: 20px;
|
|
||||||
width: 20px;
|
|
||||||
border-radius: 100%;
|
|
||||||
background-color: #5f5f5f;
|
|
||||||
color: white;
|
|
||||||
cursor: pointer;
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
|
@ -1,111 +0,0 @@
|
||||||
@font-face {
|
|
||||||
font-family: Roboto;
|
|
||||||
src: url("/fonts/Roboto-Regular.ttf");
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
|
||||||
transition: .6s;
|
|
||||||
font-family: 'Roboto';
|
|
||||||
background-color: #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 3em;
|
|
||||||
margin-top: .5em;
|
|
||||||
padding-bottom: .5em;
|
|
||||||
border-bottom: 1px solid grey;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
font-size: 2em;
|
|
||||||
text-align: left;
|
|
||||||
margin-top: .5em;
|
|
||||||
padding-bottom: .5em;
|
|
||||||
border-bottom: 1px solid grey;
|
|
||||||
width: 80%;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-size: 1.5em;
|
|
||||||
text-align: left;
|
|
||||||
margin-top: .5em;
|
|
||||||
padding-bottom: .5em;
|
|
||||||
border-bottom: 1px solid grey;
|
|
||||||
width: 75%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.even {
|
|
||||||
background-color: #565656;
|
|
||||||
}
|
|
||||||
|
|
||||||
.odd {
|
|
||||||
background-color: #888;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search {
|
|
||||||
background-image: url('/pic/search.png');
|
|
||||||
background-position: 10px 12px;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
font-size: 16px;
|
|
||||||
padding: 12px 20px 12px 40px;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
-webkit-appearance: none;
|
|
||||||
border: none;
|
|
||||||
display: inline-block;
|
|
||||||
padding: 5px 15px;
|
|
||||||
text-align: center;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: 800;
|
|
||||||
background-color: #4CAF50;
|
|
||||||
color: white;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button:hover {
|
|
||||||
background-color: #4CAFFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-disabled {
|
|
||||||
background-color: grey;
|
|
||||||
cursor: not-allowed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-disabled:hover {
|
|
||||||
background-color: grey;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hover:hover {
|
|
||||||
background-color: #4CAF50;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
#info-popup {
|
|
||||||
pointer-events: none;
|
|
||||||
position: fixed;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
bottom: 2%;
|
|
||||||
margin: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
#info-popup-text {
|
|
||||||
color: #ffffff;
|
|
||||||
background-color: #000000;
|
|
||||||
padding: .1em .5em .2em;
|
|
||||||
border-radius: 50px;
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes fade {
|
|
||||||
0% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
10% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,25 +0,0 @@
|
||||||
@media print {
|
|
||||||
html{
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
#remove{display: none;}
|
|
||||||
div #done{display: none;}
|
|
||||||
div #count font, div #name font{
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
div #count font {
|
|
||||||
border-top-left-radius: 5px;
|
|
||||||
border-bottom-left-radius: 5px;
|
|
||||||
padding-left: 2em;
|
|
||||||
}
|
|
||||||
div #name font {
|
|
||||||
padding-right: 3em;
|
|
||||||
}
|
|
||||||
.even {
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.odd {
|
|
||||||
background-color: #b9b9b9;
|
|
||||||
}
|
|
||||||
.new{display: none;}
|
|
|
@ -1,83 +0,0 @@
|
||||||
#recipeHeader {
|
|
||||||
margin-top: 2em;
|
|
||||||
font-size: 2em;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
#ingredients {
|
|
||||||
display: inline-flex;
|
|
||||||
flex-direction: column;
|
|
||||||
margin-top: 1em;
|
|
||||||
color: white;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.ingredients_row {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
min-height: 24px;
|
|
||||||
margin-bottom: .1em;
|
|
||||||
align-items: center;
|
|
||||||
border-left: 3px solid #4CAF50;
|
|
||||||
border-bottom-right-radius: 5px;
|
|
||||||
border-top-right-radius: 5px;
|
|
||||||
max-width: 30em;
|
|
||||||
}
|
|
||||||
.ingredients_row_amount {
|
|
||||||
width: auto;
|
|
||||||
min-width: 2em;
|
|
||||||
max-width: 3em;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
.ingredients_row_unit {
|
|
||||||
width: 4em;
|
|
||||||
text-indent: .5em;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
.ingredients_row_name {
|
|
||||||
text-indent: 2em;
|
|
||||||
}
|
|
||||||
#editingMenu font {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
#editingMenu {
|
|
||||||
position: fixed;
|
|
||||||
width: 2em;
|
|
||||||
height: 3em;
|
|
||||||
top: 1em;
|
|
||||||
right: .5em;
|
|
||||||
background-image: url("/pic/editingMenu.png");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: contain;
|
|
||||||
transition: .6s;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
#editingMenuOpen {
|
|
||||||
display: flex;
|
|
||||||
position: fixed;
|
|
||||||
top: 1em;
|
|
||||||
right: .5em;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
transition: .6s;
|
|
||||||
transform: translate(0, -12em);
|
|
||||||
}
|
|
||||||
|
|
||||||
#editingMenuOpen font {
|
|
||||||
text-align: center;
|
|
||||||
background-color: /*#4CAF50*/ black;
|
|
||||||
font-family: "Lucida Console", Monaco, monospace;
|
|
||||||
color: white;
|
|
||||||
font-size: 2em;
|
|
||||||
height: 40px;
|
|
||||||
width: 40px;
|
|
||||||
padding: .1em .2em .3em .2em;
|
|
||||||
margin-bottom: .1em;
|
|
||||||
border-radius: 100%;
|
|
||||||
cursor: pointer;
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
section.parsedown-section {
|
|
||||||
padding: 1em;
|
|
||||||
margin: 1em;
|
|
||||||
border: 1px solid grey;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
#searchRecipe {
|
|
||||||
width: 75%;
|
|
||||||
margin-top: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#recipes {
|
|
||||||
display: inline-flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: flex-start;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 0;
|
|
||||||
margin-top: 1em;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#recipes font {
|
|
||||||
height: 24px;
|
|
||||||
margin: .1em;
|
|
||||||
padding: 0 1em;
|
|
||||||
color: #ffffff;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#new-recipe {
|
|
||||||
float: right;
|
|
||||||
}
|
|
Loading…
Reference in a new issue