Skip to content

Commit

Permalink
Create index.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Aksshay88 authored Jun 2, 2024
1 parent 8c0ef0d commit f423735
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions Existing_API_Collection/Food_Receipe/src/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}

main {
flex: 1 0 auto;
}

.card-image:hover,
.card-content:hover {
cursor: pointer;
}

a.view-recipe:hover {
color: brown;
}

.margin-tb {
margin: 2rem auto 2rem;
}

.mb-3 {
margin-bottom: 3rem;
}

.ingredients-section {
margin: 5em auto 3em;
padding-top: 1em;
padding-bottom: 1em;
}

.card-action:hover {
background-color: rgb(218, 218, 202);
}

p span {
font-size: medium;
}

.input-field:focus {
border-bottom: 1px solid #ffff00 !important;
box-shadow: 0 1px 0 0 #ffd600 !important;
}

.input-field {
color: white;
}

.player-wrapper {
position: relative;
padding-top: 56.25%; /* Player ratio: 100 / (1280 / 720) */
}

.react-player {
position: absolute;
top: 0;
left: 0;
}

.meal-info {
max-height: 90vh;
}

.mobile-input {
color: brown;
}

.border-btm {
border-bottom: 1px solid #ffff00 !important;
box-shadow: 0 1px 0 0 #ffd600 !important;
}

.disabled {
visibility: hidden;
}

0 comments on commit f423735

Please sign in to comment.