Inverse-Rezeptsuche/app/application/static/main.css

68 lines
1.0 KiB
CSS
Raw Permalink Normal View History

2020-04-10 14:14:34 +00:00
2020-04-18 12:56:22 +00:00
2020-04-10 14:14:34 +00:00
#main{
2020-04-22 13:44:50 +00:00
margin-top: 10%;
2020-04-18 14:35:21 +00:00
padding: 0;
background-color: transparent !important;
2020-04-22 13:44:50 +00:00
display: inline-block;
2020-04-10 14:14:34 +00:00
}
2020-04-22 13:44:50 +00:00
.data-loaded{
margin-top: 0.5rem !important;
2020-04-10 14:14:34 +00:00
}
2020-04-22 13:44:50 +00:00
2020-04-18 12:56:22 +00:00
#nav-container{
display: flex;
justify-content: center;
background-color: transparent !important;
2020-04-10 14:14:34 +00:00
}
2020-04-22 13:44:50 +00:00
#search-field{
width:88%
}
2020-04-18 12:56:22 +00:00
#search-form{
width:25rem;
2020-04-10 14:14:34 +00:00
}
2020-04-18 12:56:22 +00:00
#nav-button{
float: right;
width: 12%;
2020-04-10 14:14:34 +00:00
}
2020-04-18 14:35:21 +00:00
.recipe-img{
width:100%;
}
.recipe-name{
2020-04-20 15:54:58 +00:00
margin: 1rem 0;
color: whitesmoke !important;
2020-04-18 14:35:21 +00:00
}
.recipe-instructions{
display: grid;
width:70%;
}
.recipe-score{
2020-04-22 13:44:50 +00:00
margin: 1rem 0rem;
2020-04-18 14:35:21 +00:00
}
.recipe-container{
padding:0;
2020-04-22 13:44:50 +00:00
display: block;
justify-content: start;
text-align: left;
}
.missing{
color: rgb(220, 100, 120);
}
2020-04-22 13:44:50 +00:00
.loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
margin: auto auto;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
2020-04-18 14:35:21 +00:00
}