This commit is contained in:
d7hernan 2022-11-08 16:09:45 -08:00
parent d8ed4d24a8
commit a393b36082
2 changed files with 60 additions and 1 deletions

View File

@ -12,7 +12,8 @@
<!-- Main Stylesheets & Scripts -->
<link rel="stylesheet" href="assets/styles/main.css" />
<link rel="stylesheet" href="static/ReviewCard.css" />
<link rel="stylesheet" href="static/reset.css" />
<script src="assets/scripts/main.js" type="module"></script>
</head>

58
static/ReviewCard.css Normal file
View File

@ -0,0 +1,58 @@
/* main.css */
* {
font-family: sans-serif;
}
body {
height: 100%;
width: 100%;
}
fieldset {
border: 2px solid rgb(214, 214, 214);
box-sizing: border-box;
display: block;
width: max-content;
}
form button {
display: block;
margin-top: 5px;
}
label[for="ingredients"] p {
margin: 0;
}
label[for="numRatings"] {
margin: 10px 0 0 0;
}
label[for^="rating"] {
padding-right: 10px;
}
label:not([for^="rating"]) {
display: block;
margin-bottom: 5px;
}
main {
column-gap: 10px;
display: flex;
flex-wrap: wrap;
height: auto;
max-width: 660px;
row-gap: 10px;
width: 100%;
}
.danger {
background-color: rgb(254, 171, 171);
border-color: red;
}
.hidden {
display: none;
}