mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-24 06:40:01 +01:00
83 lines
1.5 KiB
CSS
83 lines
1.5 KiB
CSS
#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;
|
|
}
|