Tranga-Website/Website/style.css

493 lines
8.9 KiB
CSS
Raw Normal View History

2023-05-22 23:52:35 +02:00
:root{
2023-05-25 22:15:06 +02:00
--background-color: #030304;
2023-05-23 00:12:30 +02:00
--second-background-color: #fff;
2023-05-22 23:52:35 +02:00
--primary-color: #f5a9b8;
2023-05-23 00:12:30 +02:00
--secondary-color: #5bcefa;
--accent-color: #fff;
2023-05-22 23:52:35 +02:00
--topbar-height: 60px;
2023-05-23 16:54:39 +02:00
box-sizing: border-box;
2023-05-22 23:52:35 +02:00
}
body{
2023-05-22 22:25:50 +02:00
padding: 0;
margin: 0;
height: 100vh;
2023-05-22 23:52:35 +02:00
background-color: var(--background-color);
font-family: "Inter", sans-serif;
overflow-x: hidden;
}
2023-05-25 21:58:45 +02:00
wrapper {
display: flex;
flex-flow: column;
flex-wrap: nowrap;
height: 100vh;
}
2023-05-22 23:52:35 +02:00
background-placeholder{
background-color: var(--second-background-color);
2023-05-23 00:12:30 +02:00
opacity: 1;
2023-05-22 23:52:35 +02:00
position: absolute;
width: 100%;
height: 100%;
2023-05-23 00:12:30 +02:00
border-radius: 0 0 5px 0;
z-index: -1;
2023-05-22 22:25:50 +02:00
}
topbar {
display: flex;
align-items: center;
2023-05-22 23:52:35 +02:00
height: var(--topbar-height);
2023-05-23 00:12:30 +02:00
background-color: var(--secondary-color);
2023-05-25 15:47:59 +02:00
z-index: 100;
box-shadow: 0 0 20px black;
2023-05-22 22:25:50 +02:00
}
titlebox {
2023-05-22 23:52:35 +02:00
position: relative;
display: flex;
margin: 0 0 0 40px;
height: 100%;
align-items:center;
justify-content:center;
}
titlebox span{
font-size: 24pt;
2023-05-22 22:25:50 +02:00
font-weight: bold;
2023-05-23 00:12:30 +02:00
background: linear-gradient(150deg, var(--primary-color), var(--accent-color));
2023-05-22 23:52:35 +02:00
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-left: 20px;
}
titlebox img {
height: 100%;
margin-right: 10px;
}
spacer{
flex-grow: 1;
}
searchdiv{
display: block;
margin: 0 10px 0 0;
}
#searchbox {
2023-05-25 15:47:59 +02:00
padding: 3px 10px;
2023-05-22 23:52:35 +02:00
border: 0;
2023-05-25 15:47:59 +02:00
border-radius: 4px;
2023-05-22 23:52:35 +02:00
font-size: 14pt;
width: 250px;
}
#settingscog {
2023-05-23 12:51:21 +02:00
cursor: pointer;
2023-05-22 23:52:35 +02:00
margin: 0px 30px;
2023-05-25 15:47:59 +02:00
height: 50%;
2023-05-22 23:52:35 +02:00
filter: invert(100%) sepia(0%) saturate(7465%) hue-rotate(115deg) brightness(116%) contrast(101%);
2023-05-22 22:25:50 +02:00
}
viewport {
2023-05-22 23:52:35 +02:00
position: relative;
2023-05-22 22:25:50 +02:00
display: flex;
flex-flow: row;
flex-wrap: nowrap;
flex-grow: 1;
height: 100%;
overflow-y: scroll;
2023-05-22 22:25:50 +02:00
}
footer {
2023-05-23 00:12:30 +02:00
display: flex;
flex-direction: row;
flex-wrap: nowrap;
width: 100%;
height: 40px;
align-items: center;
justify-content: center;
background-color: var(--primary-color);
align-content: center;
}
footer > div {
height: 100%;
margin: 0 30px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
}
footer > div > *{
height: 40%;
margin: 0 5px;
}
#madeWith {
flex-grow: 1;
text-align: right;
margin-right: 20px;
2023-05-22 22:25:50 +02:00
}
content {
2023-05-22 23:52:35 +02:00
position: relative;
2023-05-22 22:25:50 +02:00
flex-grow: 1;
border-radius: 5px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
2023-05-22 23:52:35 +02:00
justify-content: start;
align-content: start;
2023-05-22 22:25:50 +02:00
}
settings {
width: 50%;
background-color: var(--accent-color);
2023-05-24 21:48:54 +02:00
display: flex;
flex-direction: column;
z-index: 10;
position: absolute;
left: 25%;
top: 25%;
border-radius: 5px;
2023-05-25 18:18:31 +02:00
padding: 10px 0;
2023-05-24 21:48:54 +02:00
}
#settingsPopup{
z-index: 10;
2023-05-24 21:48:54 +02:00
}
2023-05-25 18:18:31 +02:00
settings > * {
margin: 0 20%;
}
settings input {
margin: 3px 0;
padding: 3px;
border-radius: 3px;
border: 1px solid rgba(0,0,0,0.2);
width: 100%;
2023-05-25 10:42:19 +02:00
}
settings .title {
2023-05-24 21:48:54 +02:00
font-weight: bolder;
2023-05-25 18:18:31 +02:00
font-size: 14pt;
margin: 15px 0 2px 0;
2023-05-24 21:48:54 +02:00
}
komga-settings {
margin-top: 20px;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
}
2023-05-23 00:12:30 +02:00
#addPublication {
2023-05-23 12:51:21 +02:00
cursor: pointer;
2023-05-22 23:52:35 +02:00
background-color: var(--secondary-color);
width: 180px;
2023-05-22 22:25:50 +02:00
height: 300px;
border-radius: 5px;
margin: 10px 10px;
2023-05-22 23:52:35 +02:00
padding: 15px 20px;
2023-05-23 00:12:30 +02:00
position: relative;
2023-05-22 23:52:35 +02:00
}
#addPublication p{
width: 100%;
text-align: center;
font-size: 150pt;
vertical-align: middle;
line-height: 300px;
margin: 0;
2023-05-23 00:12:30 +02:00
color: var(--accent-color);
2023-05-22 22:25:50 +02:00
}
.pill {
2023-05-22 23:52:35 +02:00
flex-grow: 0;
2023-05-22 22:25:50 +02:00
height: 14pt;
font-size: 12pt;
2023-05-23 00:12:30 +02:00
border-radius: 9pt;
2023-05-22 23:52:35 +02:00
background-color: var(--primary-color);
2023-05-25 15:47:59 +02:00
padding: 2pt 17px;
color: black;
2023-05-23 00:12:30 +02:00
}
publication{
2023-05-23 12:51:21 +02:00
cursor: pointer;
2023-05-23 00:12:30 +02:00
background-color: var(--secondary-color);
width: 180px;
height: 300px;
border-radius: 5px;
margin: 10px 10px;
padding: 15px 20px;
position: relative;
}
publication::after{
content: '';
position: absolute;
left: 0; top: 0;
border-radius: 5px;
width: 100%; height: 100%;
2023-05-25 15:41:24 +02:00
background: linear-gradient(rgba(0,0,0,0.7), rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.2));
2023-05-23 00:12:30 +02:00
}
publication-information {
display: flex;
flex-direction: column;
justify-content: start;
2023-05-22 22:25:50 +02:00
}
2023-05-23 17:57:48 +02:00
publication-information * {
z-index: 1;
color: var(--accent-color);
}
2023-05-22 23:52:35 +02:00
connector-name{
width: fit-content;
margin: 10px 0;
2023-05-22 22:25:50 +02:00
}
publication-name{
2023-05-22 23:52:35 +02:00
width: fit-content;
2023-05-22 22:25:50 +02:00
font-size: 16pt;
font-weight: bold;
2023-05-23 00:12:30 +02:00
}
publication img {
position: absolute;
top: 0;
left: 0;
2023-05-25 15:40:03 +02:00
width: 100%;
height: 100%;
object-fit: cover;
2023-05-23 00:12:30 +02:00
z-index: 0;
2023-05-25 17:33:55 +02:00
border-radius: 5px;
2023-05-23 14:44:59 +02:00
}
2023-05-23 17:57:48 +02:00
popup{
2023-05-23 16:27:09 +02:00
display: none;
2023-05-23 14:44:59 +02:00
width: 100%;
2023-05-23 16:54:39 +02:00
min-height: 100%;
2023-05-23 14:44:59 +02:00
top: 0;
left: 0;
position: fixed;
2023-05-23 16:27:09 +02:00
z-index: 2;
2023-05-23 14:44:59 +02:00
}
2023-05-23 17:57:48 +02:00
blur-background {
2023-05-23 14:44:59 +02:00
width: 100%;
height: 100%;
position: absolute;
left: 0;
background-color: black;
opacity: 0.5;
}
addtask-window {
2023-05-23 18:46:06 +02:00
display: flex;
2023-05-23 16:54:39 +02:00
flex-direction: column;
flex-wrap: nowrap;
2023-05-23 14:44:59 +02:00
position: absolute;
2023-05-23 16:54:39 +02:00
left: 12.5%;
2023-05-23 14:44:59 +02:00
top: 15%;
2023-05-23 16:54:39 +02:00
width: 75%;
min-height: 70%;
max-height: 80%;
2023-05-23 14:44:59 +02:00
padding: 0;
background-color: var(--accent-color);
border-radius: 5px;
}
window-titlebar {
width: 100%;
height: 60px;
background-color: var(--primary-color);
border-radius: 5px 5px 0 0;
color: var(--accent-color);
display: flex block;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
window-titlebar p {
margin: 0 30px;
font-size: 14pt;
font-weight: bolder;
letter-spacing: 1px;
}
2023-05-23 16:27:09 +02:00
window-titlebar #closePopupImg {
2023-05-23 14:44:59 +02:00
height: 70%;
2023-05-23 16:27:09 +02:00
cursor: pointer;
2023-05-23 16:54:39 +02:00
margin-right: 20px;
2023-05-23 16:27:09 +02:00
filter: invert(100%) sepia(0%) saturate(100%) hue-rotate(115deg) brightness(116%) contrast(101%);
2023-05-23 14:44:59 +02:00
}
window-content {
2023-05-23 15:15:29 +02:00
display: flex;
flex-direction: column;
2023-05-23 16:54:39 +02:00
padding: 20px 5%;
overflow-x: scroll;
}
addtask-settings{
display: flex;
justify-content: center;
align-items: center;
}
addtask-settings select, addtask-settings input{
padding: 5px;
font-size: 10pt;
border: 1px solid rgba(0,0,0,0.2);
border-radius: 3px;
background-color: transparent;
margin: 10px 0;
width: 150px;
}
addtask-settings label {
font-weight: bolder;
margin: 0 5px;
}
addtask-settings addtask-setting{
margin: 0 15px;
2023-05-23 15:15:29 +02:00
}
#taskSelectOutput{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: start;
align-content: start;
2023-05-23 17:57:48 +02:00
}
2023-05-23 18:46:06 +02:00
#publicationViewerPopup{
z-index: 5;
2023-05-23 18:46:06 +02:00
}
2023-05-23 17:57:48 +02:00
publication-viewer{
2023-05-23 18:46:06 +02:00
display: block;
width: 450px;
2023-05-23 17:57:48 +02:00
height: 300px;
position: absolute;
top: 200px;
left: 400px;
background-color: var(--accent-color);
border-radius: 5px;
overflow: hidden;
}
publication-viewer{
padding: 30px;
}
publication-viewer::after{
content: '';
position: absolute;
left: 0; top: 0;
border-radius: 5px;
width: 100%; height: 100%;
background: rgba(0,0,0,0.8);
backdrop-filter: blur(3px);
}
publication-viewer img {
position: absolute;
left: 0;
top: 0;
2023-05-25 15:50:00 +02:00
height: 100%;
width: 100%;
object-fit: cover;
2023-05-23 17:57:48 +02:00
border-radius: 5px;
z-index: 0;
}
publication-viewer publication-information publication-name{
margin: 5px 0;
}
publication-viewer publication-information publication-author {
margin: 5px 0;
}
publication-viewer publication-information publication-author::before {
content: "Author: ";
}
publication-viewer publication-information publication-description::before {
content: "Description";
display: block;
font-weight: bolder;
}
publication-viewer publication-information publication-description {
font-size: 12pt;
margin: 5px 0;
max-height: 200px;
overflow-x: scroll;
}
publication-viewer publication-information publication-delete {
position: absolute;
bottom: 0px;
right: 0px;
color: red;
margin: 20px;
font-size: 16pt;
2023-05-23 18:46:06 +02:00
}
publication-viewer publication-information publication-add {
position: absolute;
bottom: 0px;
right: 0px;
color: limegreen;
margin: 20px;
font-size: 16pt;
2023-05-25 21:58:45 +02:00
}
footer-tag-popup {
display: none;
2023-05-25 22:15:06 +02:00
padding: 2px 4px;
2023-05-25 21:58:45 +02:00
position: fixed;
2023-05-25 22:05:29 +02:00
bottom: 58px;
2023-05-25 21:58:45 +02:00
left: 20px;
2023-05-25 22:15:06 +02:00
background-color: var(--second-background-color);
2023-05-25 21:58:45 +02:00
z-index: 8;
border-radius: 5px;
max-height: 400px;
}
footer-tag-content{
position: relative;
max-height: 400px;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
overflow-y: scroll;
}
footer-tag-content > * {
margin: 2px 0;
}
footer-tag-popup::before{
content: "";
width: 0;
height: 0;
position: absolute;
2023-05-25 22:15:06 +02:00
border-right: 10px solid var(--second-background-color);
border-left: 10px solid transparent;
border-top: 10px solid var(--second-background-color);
border-bottom: 10px solid transparent;
2023-05-25 21:58:45 +02:00
left: 0px;
2023-05-25 22:15:06 +02:00
bottom: -17px;
2023-05-25 21:58:45 +02:00
border-radius: 0 0 0 5px;
2023-05-22 22:25:50 +02:00
}