Tranga-Website/Website/style.css

207 lines
3.9 KiB
CSS
Raw Normal View History

2023-05-22 23:52:35 +02:00
:root{
2023-05-23 00:12:30 +02:00
--background-color: #eee;
--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;
box-sizing: content-box;
}
body{
2023-05-22 22:25:50 +02:00
padding: 0;
margin: 0;
display: flex;
flex-flow: column;
flex-wrap: nowrap;
height: 100vh;
2023-05-22 23:52:35 +02:00
background-color: var(--background-color);
font-family: "Inter", sans-serif;
overflow-x: hidden;
}
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-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 {
padding: 6px 8px;
border: 0;
border-radius: 3px;
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;
height: calc(100% - 40px);
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;
}
sidebar{
2023-05-22 23:52:35 +02:00
position: relative;
2023-05-22 22:25:50 +02:00
width: 20rem;
2023-05-23 00:12:30 +02:00
margin-bottom: 20px;
border-radius: 0 0 5px 0;
display: flex;
flex-direction: column;
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;
2023-05-22 23:52:35 +02:00
margin: 0 10px 10px 10px;
2023-05-22 22:25:50 +02:00
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
}
settingstab{
2023-05-22 23:52:35 +02:00
position: absolute;
right: -20rem;
bottom: 0;
background-color: rgba(0,0,0,0.5);
2023-05-22 22:25:50 +02:00
width: 20rem;
2023-05-22 23:52:35 +02:00
height: calc(100% - var(--topbar-height) - 20px);
2023-05-22 22:25:50 +02:00
margin-bottom: 10px;
2023-05-22 23:52:35 +02:00
border-radius: 5px 0 0 5px;
2023-05-22 22:25:50 +02:00
}
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-23 00:12:30 +02:00
padding: 2pt 20px;
}
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%;
background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.1));
}
publication-information {
display: flex;
flex-direction: column;
justify-content: start;
background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73))
z-index: 1;
2023-05-22 22:25:50 +02:00
}
2023-05-22 23:52:35 +02:00
connector-name{
width: fit-content;
margin: 10px 0;
2023-05-23 00:12:30 +02:00
z-index: 2;
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
z-index: 2;
color: var(--accent-color);
}
publication img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
2023-05-22 22:25:50 +02:00
}