2022-11-13 04:10:17 +00:00
|
|
|
/* CreatePage.css */
|
|
|
|
|
2022-11-21 08:56:54 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: "testFont";
|
|
|
|
src: url(CoveredByYourGrace-Regular.ttf);
|
|
|
|
}
|
|
|
|
|
2022-11-21 03:50:54 +00:00
|
|
|
body {
|
2022-11-21 08:56:54 +00:00
|
|
|
background-color: #F8F3F1;
|
|
|
|
|
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;
|
2022-11-21 08:56:54 +00:00
|
|
|
color:#516754;
|
|
|
|
font-family: 'testFont';
|
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%;
|
2022-11-21 08:56:54 +00:00
|
|
|
font-family: 'Century Gothic';
|
2022-11-21 03:50:54 +00:00
|
|
|
width: 50%;
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
2022-11-21 08:56:54 +00:00
|
|
|
color: #516754;
|
|
|
|
border: 2px solid rgb(31, 41, 32);
|
|
|
|
border-radius: 8px;
|
|
|
|
background-color: #f7dfd5;
|
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;
|
|
|
|
}
|
2022-11-21 08:56:54 +00:00
|
|
|
|
|
|
|
.tag-container {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag {
|
|
|
|
background-color: grey;
|
|
|
|
border-radius: 7px;
|
|
|
|
color: white;
|
|
|
|
padding-right: 7px;
|
|
|
|
padding-left: 7px;
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: "x";
|
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
margin-right: 4px;
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag:hover::before {
|
|
|
|
color: red;
|
|
|
|
}
|