2022-11-13 04:10:17 +00:00
|
|
|
/* CreatePage.css */
|
|
|
|
|
2022-11-21 03:50:54 +00:00
|
|
|
body {
|
|
|
|
background-color: #13323b;
|
2022-11-13 04:10:17 +00:00
|
|
|
}
|
|
|
|
|
2022-11-19 19:19:57 +00:00
|
|
|
h1 {
|
2022-11-21 03:50:54 +00:00
|
|
|
text-align: center;
|
2022-11-13 04:10:17 +00:00
|
|
|
}
|
2022-11-21 03:50:54 +00:00
|
|
|
|
|
|
|
.top-bar {
|
|
|
|
margin-top: -8cm;
|
2022-11-13 04:10:17 +00:00
|
|
|
}
|
2022-11-21 03:50:54 +00:00
|
|
|
|
|
|
|
.top-bar > img {
|
|
|
|
position: relative;
|
|
|
|
top: 7.85cm;
|
2022-11-13 04:10:17 +00:00
|
|
|
}
|
|
|
|
|
2022-11-21 03:50:54 +00:00
|
|
|
.top-bar > h1 {
|
|
|
|
position: relative;
|
|
|
|
top: 2.2cm;
|
|
|
|
font-size: 3cm;
|
|
|
|
color: #eaa9bc;
|
2022-11-13 04:10:17 +00:00
|
|
|
}
|
2022-11-21 03:50:54 +00:00
|
|
|
|
|
|
|
.top-bar > form {
|
|
|
|
position: relative;
|
|
|
|
left: 32cm;
|
2022-11-13 04:10:17 +00:00
|
|
|
}
|
|
|
|
|
2022-11-19 19:19:57 +00:00
|
|
|
.journal-form {
|
2022-11-21 03:50:54 +00:00
|
|
|
font-size: 120%;
|
|
|
|
width: 50%;
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
color: #ccb3bb;
|
|
|
|
border: 3px solid rgb(7 0 0);
|
|
|
|
background-color: #b52754;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden,
|
|
|
|
.rating:not(:checked) > input { /* Hide radio circles while star rating */
|
2022-11-21 03:50:54 +00:00
|
|
|
display: none;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Unchecked stars */
|
|
|
|
.rating:not(:checked) > label {
|
2022-11-21 03:50:54 +00:00
|
|
|
/* Make stars line up sideways and not vertically */
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
/* Hide label text */
|
|
|
|
width: 1em;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
/* Star default color and size */
|
|
|
|
font-size: 200%;
|
|
|
|
line-height: 1.2;
|
|
|
|
color: #b3b3cc;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.rating > label:active {
|
2022-11-21 03:50:54 +00:00
|
|
|
position: relative;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.rating:not(:checked) > label::before {
|
2022-11-21 03:50:54 +00:00
|
|
|
content: "★";
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Checked star color */
|
|
|
|
.rating > input:checked ~ label {
|
2022-11-21 03:50:54 +00:00
|
|
|
color: #ffbf00;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.rating:not(:checked) > label:hover,
|
|
|
|
.rating:not(:checked) > label:hover ~ label {
|
2022-11-21 03:50:54 +00:00
|
|
|
color: orangered;
|
2022-11-19 20:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.rating > input:checked + label:hover,
|
|
|
|
.rating > input:checked ~ label:hover,
|
|
|
|
.rating > input:checked + label:hover ~ label,
|
|
|
|
.rating > input:checked ~ label:hover ~ label,
|
|
|
|
.rating > label:hover ~ input:checked ~ label {
|
2022-11-21 03:50:54 +00:00
|
|
|
color: orangered;
|
|
|
|
}
|