gnu-social/public/assets/css/base_small.css

168 lines
3.2 KiB
CSS
Raw Normal View History

:root {
2020-07-14 23:18:42 +01:00
--head-font: 'Montserrat', sans-serif;
--main-font: 'Open Sans', sans-serif;
--main-size: 1.2em;
--medium-size: 0.85em;
2020-07-14 23:18:42 +01:00
--small-size: 0.65em;
--unit-size: 1em;
--side-margin: 2em;
2020-07-14 23:18:42 +01:00
--nav-size: 100%;
}
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%);
2020-07-14 23:18:42 +01:00
background-attachment: fixed;
background-size: cover;
color: #F6F6F6;
font-family: var(--main-font);
font-size: var(--main-size);
margin: 0;
padding: 0;
}
ul {
2020-07-14 23:18:42 +01:00
text-decoration: none;
margin: 0;
padding: 0;
list-style: none;
}
2020-07-14 23:18:42 +01:00
li {
margin: 0;
padding: 0;
}
a:link {
2020-07-14 23:18:42 +01:00
text-decoration: none;
outline: 0;
color: #F6F6F6;
margin: 0;
padding: 0;
}
a:visited {
2020-07-14 23:18:42 +01:00
outline: 0;
color: #F6F6F6;
margin: 0;
padding: 0;
}
a:focus {
color: #F6F6F6;
transition: all 0.8s ease;
}
b {
2020-07-14 23:18:42 +01:00
font-family: var(--head-font);
font-weight: 800;
}
/*-------------------------------------*/
/* HEADER -----------------------------*/
#header {
2020-07-14 23:18:42 +01:00
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);
}
2020-06-25 19:45:14 +01:00
#top {
2020-07-14 23:18:42 +01:00
display: flex;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
align-items: center;
}
.icon-menu {
2020-07-19 11:44:44 +01:00
position: relative;
2020-07-14 23:18:42 +01:00
width: var(--unit-size);
height: var(--unit-size);
2020-07-19 11:44:44 +01:00
}
.icon-menu label {
width: var(--unit-size);
height: 2px;
background: #F6F6F6;
transition: all .5s ease-in-out;
}
.icon-menu label::before,
.icon-menu label::after {
content: '';
position: absolute;
width: var(--unit-size);
height: 2px;
background: #F6F6F6;
transition: all .5s ease-in-out;
}
.icon-menu label::before {
transform: translateY(-6px);
}
.icon-menu label::after {
transform: translateY(6px);
}
#toggle:checked+div label{
width: 0px;
}
#toggle:checked+div label::before {
transform: rotate(45deg);
}
#toggle:checked+div label::after {
transform: rotate(-45deg);
}
#instance {
2020-07-14 23:18:42 +01:00
order: 2;
}
2020-06-25 19:45:14 +01:00
#instance b {
2020-07-14 23:18:42 +01:00
margin: 0;
padding: 0;
vertical-align: middle;
margin-left: calc(0.2 * var(--unit-size));
2020-06-25 19:45:14 +01:00
}
.icon-logo {
2020-07-14 23:18:42 +01:00
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;
2020-07-14 23:18:42 +01:00
}
#left-panel {
order: 2;
}
#search {
2020-07-14 23:18:42 +01:00
order: 3;
}
.icon-search {
2020-07-14 23:18:42 +01:00
margin: 0;
padding: 0;
display: inline-block;
width: var(--unit-size);
height: var(--unit-size);
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}
/* left panel z-index fix */
.form {
position: relative;
z-index: 0;
}
#header {
z-index: 1;
}