403 lines
7.4 KiB
CSS
403 lines
7.4 KiB
CSS
:root {
|
|
/* FONTS */
|
|
--display-font: 'Manrope-ExtraBold', sans-serif;
|
|
--main-font: 'Inter', sans-serif;
|
|
|
|
/* UNITS
|
|
* unit size - every element should be a multiplier of this
|
|
* main size - used for headers and icons
|
|
* medium size - same as above, except that the element in question is contained in something else
|
|
* small size - used in common text, borders
|
|
*/
|
|
--unit-size: 0.5rem;
|
|
--main-size: 1.3rem;
|
|
--medium-size: 1.15rem;
|
|
--small-size: 1rem;
|
|
|
|
/* colours and shadows */
|
|
--black: #040506;
|
|
--bg1: #1e222b;
|
|
--bg2: #35394c;
|
|
--bg3: #46465e;
|
|
--translucent: #00000033;
|
|
--translucent-light: #FFFFFF33;
|
|
--white: #EEDFD4;
|
|
|
|
--accent-blue: #8E8DBEAA;
|
|
--accent-red: #FF6666AA;
|
|
--accent-green: #2EC4B6AA;
|
|
|
|
--shadow: 0px 0px 32px 0px var(--bg1);
|
|
--shadow-light: 0px 0px 32px 0px var(--accent-blue);
|
|
|
|
/* transitions and animations */
|
|
--cubic-transition: all 200ms cubic-bezier(0, 0.55, 0.45, 1);
|
|
--fade-in: fadeIn 200ms cubic-bezier(0, 0.55, 0.45, 1);
|
|
--fade-out: fadeOut 200ms cubic-bezier(0, 0.55, 0.45, 1);
|
|
}
|
|
|
|
.bg {
|
|
background-color: var(--bg1);
|
|
background-image: url(bg.png);
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
border: solid 2px var(--bg2);
|
|
}
|
|
|
|
/* TYPOGRAPHY */
|
|
html {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
body {
|
|
background-image: url(bg.png);
|
|
background-size: cover;
|
|
}
|
|
|
|
h1 {
|
|
font-family: var(--display-font);
|
|
font-size: var(--main-size);
|
|
font-weight: 900;
|
|
opacity: 1.00;
|
|
letter-spacing: -0.40px;
|
|
word-spacing: 4.00px;
|
|
}
|
|
|
|
h2 {
|
|
font-family: var(--display-font);
|
|
font-size: var(--medium-size);
|
|
font-weight: 800;
|
|
letter-spacing: -0.75px;
|
|
word-spacing: 3.00px;
|
|
text-transform: none;
|
|
}
|
|
|
|
h3 {
|
|
font-family: var(--display-font);
|
|
font-size: var(--medium-size);
|
|
font-weight: 600;
|
|
line-height: 1.00;
|
|
letter-spacing: -0.20px;
|
|
word-spacing: 1.00px;
|
|
text-transform: none;
|
|
}
|
|
|
|
p {
|
|
font-family: var(--main-font);
|
|
font-size: var(--medium-size);
|
|
font-weight: 400;
|
|
letter-spacing: -0.30px;
|
|
word-spacing: -0.10px;
|
|
margin-bottom: var(--small-size) !important;
|
|
text-transform: none;
|
|
}
|
|
|
|
ul {
|
|
text-decoration: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
li {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: none;
|
|
color: var(--white);
|
|
outline: 0;
|
|
}
|
|
|
|
a:visited {
|
|
text-decoration: none;
|
|
color: var(--white);
|
|
outline: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a:focus,
|
|
a:hover {
|
|
border-radius: var(--unit-size) !important;
|
|
background: var(--white) !important;
|
|
color: var(--bg1) !important;
|
|
padding: 0 var(--unit-size) 0 var(--unit-size) !important;
|
|
transition: var(--cubic-transition);
|
|
}
|
|
|
|
|
|
button,
|
|
input[type=file]::file-selector-button {
|
|
font-family: var(--display-font);
|
|
font-size: var(--medium-size);
|
|
padding: .2em .4em;
|
|
|
|
border-radius: var(--unit-size);
|
|
border: 2px solid var(--bg2);
|
|
|
|
background-color: var(--translucent);
|
|
color: var(--white);
|
|
transition: var(--cubic-transition);
|
|
}
|
|
|
|
input[type=file]::file-selector-button:hover,
|
|
button:hover {
|
|
border: 2px solid var(--white) !important;
|
|
background-color: var(--white) !important;
|
|
color: var(--bg2) !important;
|
|
}
|
|
|
|
button {
|
|
align-self: flex-end;
|
|
}
|
|
|
|
#instance:focus svg,
|
|
#instance:hover svg {
|
|
fill: var(--bg1);
|
|
transition: all 400ms ease;
|
|
}
|
|
|
|
summary:hover > svg,
|
|
summary:focus > svg {
|
|
border-radius: var(--unit-size);
|
|
background-color: var(--white);
|
|
fill: var(--bg1) !important;
|
|
stroke: var(--bg1) !important;
|
|
border: unset !important;
|
|
transition: var(--cubic-transition);
|
|
}
|
|
|
|
hr {
|
|
all: unset;
|
|
display: block;
|
|
height: 2px;
|
|
background: var(--bg2);
|
|
}
|
|
|
|
/* DEFAULTS */
|
|
body,
|
|
html {
|
|
color: var(--white);
|
|
font-family: var(--main-font);
|
|
}
|
|
|
|
#header {
|
|
font-size: var(--main-size);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
position: fixed;
|
|
top: 0;
|
|
|
|
padding: var(--unit-size);
|
|
box-sizing: border-box;
|
|
width: 100vw;
|
|
max-width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
border: unset !important;
|
|
background-attachment: fixed !important;
|
|
box-shadow: var(--shadow-light);
|
|
}
|
|
|
|
#instance {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.icon-logo {
|
|
margin-right: var(--small-size);
|
|
fill: var(--white);
|
|
}
|
|
|
|
/* CONTAINS ALL ELEMENTS BESIDES HEADER */
|
|
.container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
/*margin-top: calc(3 * var(--small-size) + var(--main-size));*/
|
|
margin-top: 4.3rem;
|
|
}
|
|
|
|
/* THE FOCUSED (middle) DIV */
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-left: 20%;
|
|
margin-right: 20%;
|
|
padding: var(--small-size);
|
|
|
|
width: 100%;
|
|
max-width: 60%;
|
|
}
|
|
|
|
/* NOTES */
|
|
.h-feed,
|
|
.notes {
|
|
margin-top: var(--main-size);
|
|
}
|
|
|
|
.h-feed,
|
|
.notes hr {
|
|
margin-top: var(--unit-size);
|
|
margin-bottom: var(--main-size);
|
|
}
|
|
|
|
.h-entry,
|
|
.note {
|
|
border-radius: var(--unit-size);
|
|
}
|
|
|
|
.note-info {
|
|
display: flex;
|
|
border-radius: var(--unit-size);
|
|
box-sizing: border-box;
|
|
|
|
background-color: var(--translucent);
|
|
font-size: var(--main-size);
|
|
padding: var(--unit-size);
|
|
}
|
|
|
|
.note-info .avatar {
|
|
width: auto;
|
|
height: var(--main-size);
|
|
}
|
|
|
|
.note-content {
|
|
padding: var(--small-size);
|
|
}
|
|
.note-content p {
|
|
font-size: var(--medium-size);
|
|
padding-left: var(--small-size);
|
|
padding-right: var(--small-size);
|
|
}
|
|
|
|
.note-attachments {
|
|
display: flex;
|
|
}
|
|
|
|
.note-attachments > figure {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0;
|
|
border-radius: var(--unit-size);
|
|
background-color: var(--translucent);
|
|
padding: var(--small-size);
|
|
}
|
|
|
|
.note-attachments > figure figcaption {
|
|
display: flex;
|
|
padding-top: var(--small-size);
|
|
}
|
|
|
|
.note-attachments > figure img,
|
|
.note-attachments > figure video {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
figcaption a:link {
|
|
font-size: var(--small-size);
|
|
color: var(--white);
|
|
}
|
|
|
|
/* SIDE PANELS */
|
|
.panel {
|
|
font-size: var(--main-size);
|
|
}
|
|
|
|
.panel aside {
|
|
animation: var(--fade-in);
|
|
padding: var(--unit-size);
|
|
|
|
|
|
box-sizing: border-box;
|
|
width: 20%;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
position: absolute;
|
|
top: 100%;
|
|
}
|
|
|
|
.panel aside .footer {
|
|
margin-top: auto;
|
|
}
|
|
|
|
.icon-left,
|
|
.icon-right {
|
|
display: none;
|
|
}
|
|
|
|
|
|
/* MEDIA RESIZE */
|
|
@media (max-width: 1200px) {
|
|
.icon-left,
|
|
.icon-right {
|
|
display: flex;
|
|
padding: var(--unit-size);
|
|
}
|
|
|
|
.content {
|
|
margin: unset;
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
.panel aside {
|
|
display: none;
|
|
}
|
|
|
|
.panel[open] {
|
|
width: 100%;
|
|
font-size: var(--main-size);
|
|
}
|
|
|
|
.panel[open] {
|
|
all: unset;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.panel aside {
|
|
display: none !important;
|
|
}
|
|
|
|
.panel[open] aside {
|
|
padding: var(--unit-size);
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: url("bg.png") !important;
|
|
background-size: cover !important;
|
|
|
|
display: block !important;
|
|
}
|
|
}
|
|
|
|
/* ANIMATIONS */
|
|
@keyframes fadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
100% {
|
|
opacity: unset;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeOut {
|
|
100% {
|
|
opacity: 0;
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
0% {
|
|
opacity: unset;
|
|
transform: none;
|
|
}
|
|
} |