cse110-fa22-group29/source/static/ReviewCard.css

131 lines
2.0 KiB
CSS
Raw Normal View History

2022-11-09 00:09:45 +00:00
/* 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;
}
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%;
}
.tag-container {
display: flex;
flex-flow: row wrap;
}
2022-11-10 21:22:32 +00:00
.tag {
2022-11-09 06:43:41 +00:00
background-color: grey;
border-radius: 7px;
color: white;
padding-right: 7px;
padding-left: 7px;
margin: 3px;
}
.tag::before {
display: inline-block;
content: "x";
2022-11-09 06:43:41 +00:00
height: 15px;
width: 15px;
margin-right: 4px;
text-align: center;
color: white;
cursor: pointer;
}
2022-11-10 21:22:32 +00:00
.tag:hover::before {
2022-11-09 06:43:41 +00:00
color: red;
}
2022-11-10 21:22:32 +00:00
.danger {
background-color: rgb(254 171 171);
2022-11-10 21:22:32 +00:00
border-color: red;
}
2022-11-17 20:19:26 +00:00
2022-11-17 20:31:51 +00:00
.hidden,
2022-11-17 20:19:26 +00:00
.rating:not(:checked) > input { /* Hide radio circles while star rating */
2022-11-17 20:31:51 +00:00
display: none;
2022-11-17 20:19:26 +00:00
}
/* Unchecked stars */
.rating:not(:checked) > label {
/* Make stars line up sideways and not vertically */
2022-11-17 20:44:19 +00:00
float: right;
2022-11-17 20:19:26 +00:00
/* Hide label text */
2022-11-17 20:31:51 +00:00
width: 1em;
overflow: hidden;
white-space: nowrap;
2022-11-17 20:19:26 +00:00
2022-11-17 20:44:19 +00:00
/* Star default color and size */
2022-11-17 20:31:51 +00:00
font-size: 200%;
line-height: 1.2;
color: #b3b3cc;
2022-11-17 20:19:26 +00:00
}
2022-11-17 20:44:19 +00:00
.rating > label:active {
position: relative;
}
.rating:not(:checked) > label::before {
2022-11-17 20:31:51 +00:00
content: "★";
2022-11-17 20:19:26 +00:00
}
/* Checked star color */
.rating > input:checked ~ label {
2022-11-17 20:31:51 +00:00
color: #ffbf00;
2022-11-17 20:19:26 +00:00
}
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
color: orangered;
}
.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
2022-11-17 20:44:19 +00:00
.rating > input:checked + label:hover ~ label,
2022-11-17 20:19:26 +00:00
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
color: orangered;
}