2022-11-22 00:07:20 +00:00
|
|
|
.journal-form h1 {
|
2022-11-22 01:27:18 +00:00
|
|
|
font-family: testFont;
|
2022-11-21 21:52:44 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.journal-form {
|
|
|
|
font-size: 120%;
|
2022-11-22 01:27:18 +00:00
|
|
|
font-family: "Century Gothic";
|
2022-11-21 21:52:44 +00:00
|
|
|
width: 50%;
|
|
|
|
margin: auto;
|
|
|
|
color: #516754;
|
2022-11-22 01:27:18 +00:00
|
|
|
border: 2px solid rgb(31 41 32);
|
2022-11-21 21:52:44 +00:00
|
|
|
border-radius: 8px;
|
|
|
|
background-color: #f7dfd5;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2022-11-22 01:27:18 +00:00
|
|
|
input[type="text"] {
|
2022-11-21 21:52:44 +00:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #f7dfd5;
|
|
|
|
border: none;
|
2022-11-22 01:27:18 +00:00
|
|
|
border-bottom: 1px solid rgb(0 0 0);
|
2022-11-21 21:52:44 +00:00
|
|
|
}
|
|
|
|
|
2022-11-22 01:27:18 +00:00
|
|
|
input[type="text"]:focus {
|
2022-11-21 21:52:44 +00:00
|
|
|
outline: none;
|
2022-11-22 01:27:18 +00:00
|
|
|
border-bottom: 1px solid rgb(0 0 0);
|
2022-11-21 21:52:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.rating {
|
2022-11-22 01:27:18 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
flex-direction: row-reverse;
|
2022-11-21 21:52:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden,
|
|
|
|
.rating:not(:checked) > input { /* Hide radio circles while star rating */
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unchecked stars */
|
|
|
|
.rating:not(:checked) > label {
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rating > label:active {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rating:not(:checked) > label::before {
|
|
|
|
content: "★";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Checked star color */
|
|
|
|
.rating > input:checked ~ label {
|
|
|
|
color: #ffbf00;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rating:not(:checked) > label:hover,
|
|
|
|
.rating:not(:checked) > label:hover ~ label {
|
|
|
|
color: orangered;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
color: orangered;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag-container {
|
|
|
|
display: flex;
|
2022-11-22 01:31:12 +00:00
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
2022-11-21 21:52:44 +00:00
|
|
|
}
|
2022-11-22 01:27:18 +00:00
|
|
|
|
2022-11-21 21:52:44 +00:00
|
|
|
.tag {
|
|
|
|
background-color: grey;
|
|
|
|
border-radius: 7px;
|
|
|
|
color: white;
|
|
|
|
padding-right: 7px;
|
|
|
|
padding-left: 7px;
|
|
|
|
margin: 3px;
|
|
|
|
}
|
2022-11-22 01:27:18 +00:00
|
|
|
|
2022-11-21 21:52:44 +00:00
|
|
|
.tag::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: "x";
|
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
margin-right: 4px;
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2022-11-22 01:27:18 +00:00
|
|
|
|
2022-11-21 21:52:44 +00:00
|
|
|
.tag:hover::before {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tag-add-btn {
|
|
|
|
background-color: #94da97; /* Green */
|
|
|
|
border: round;
|
2022-11-22 01:27:18 +00:00
|
|
|
color: rgb(206 83 179);
|
2022-11-21 21:52:44 +00:00
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 10%;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tag-add-btn:hover {
|
2022-11-22 01:27:18 +00:00
|
|
|
background-color: rgb(206 83 179); /* Green */
|
2022-11-21 21:52:44 +00:00
|
|
|
border: round;
|
|
|
|
color: #94da97;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 10%;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
2022-11-22 01:20:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tag-container * {
|
|
|
|
max-width: 100%;
|
|
|
|
overflow-wrap: anywhere;
|
2022-11-22 01:27:18 +00:00
|
|
|
}
|