forked from GNUsocial/gnu-social
133 lines
2.4 KiB
CSS
133 lines
2.4 KiB
CSS
:root {
|
|
--head-font: 'Montserrat', sans-serif;
|
|
--main-font: 'Open Sans', sans-serif;
|
|
--main-size: 1.25em;
|
|
--medium-size: 0.8em;
|
|
--small-size: 0.65em;
|
|
--unit-size: 1em;
|
|
--side-margin: 2em;
|
|
--nav-size: 15em;
|
|
}
|
|
|
|
body,
|
|
html {
|
|
background: #2E3945;
|
|
background: -moz-linear-gradient(80deg, #2E3945 0%, #61778C 100%);
|
|
background: -webkit-linear-gradient(80deg, #2E3945 0%, #61778C 100%);
|
|
background: linear-gradient(80deg, #2E3945 0%, #61778C 100%);
|
|
background-attachment: fixed;
|
|
background-size: cover;
|
|
color: #F6F6F6;
|
|
font-family: var(--main-font);
|
|
font-size: var(--main-size);
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
ul {
|
|
text-decoration: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
li {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: none;
|
|
outline: 0;
|
|
color: #F6F6F6;
|
|
}
|
|
|
|
a:visited {
|
|
outline: 0;
|
|
color: #F6F6F6;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
b {
|
|
font-family: var(--head-font);
|
|
font-weight: 800;
|
|
}
|
|
|
|
#container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
/*-------------------------------------*/
|
|
/* HEADER -----------------------------*/
|
|
#header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: #272E36;
|
|
box-shadow: 0px 0px 60px -20px rgba(0, 0, 0, 0.75);
|
|
padding: var(--main-size);
|
|
height: var(--main-size);
|
|
}
|
|
|
|
#top {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
width: 100%;
|
|
}
|
|
|
|
.icon-menu {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: inline-block;
|
|
width: var(--unit-size);
|
|
height: var(--unit-size);
|
|
stroke-width: 0;
|
|
stroke: currentColor;
|
|
fill: currentColor;
|
|
}
|
|
|
|
#instance {
|
|
order: 1;
|
|
|
|
}
|
|
|
|
#instance b {
|
|
margin: 0;
|
|
padding: 0;
|
|
vertical-align: middle;
|
|
margin-left: calc(0.2 * var(--unit-size));
|
|
}
|
|
|
|
.icon-logo {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: inline-block;
|
|
width: var(--unit-size);
|
|
height: var(--unit-size);
|
|
stroke-width: 0;
|
|
stroke: currentColor;
|
|
fill: currentColor;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#left-panel {
|
|
order: 2;
|
|
}
|
|
|
|
#search {
|
|
order: 3;
|
|
width: var(--unit-size);
|
|
height: var(--unit-size);
|
|
}
|
|
|
|
.icon-search {
|
|
stroke-width: 0;
|
|
stroke: currentColor;
|
|
fill: currentColor;
|
|
align-self: center;
|
|
} |