gab-social/app/javascript/styles/gabsocial/containers.scss

837 lines
15 KiB
SCSS

.container-alt {
width: 700px;
margin: 40px auto 0 auto;
@media screen and (max-width: 740px) {
width: 100%;
margin: 0;
}
}
.logo-container {
margin: 100px auto 50px;
@media screen and (max-width: 500px) {
margin: 40px auto 0;
}
h1 {
@include flex(center, center);
img {
height: 42px;
margin-right: 10px;
}
a {
color: $primary-text-color;
text-decoration: none;
outline: 0;
padding: 12px 16px;
font-family: $font-display, sans-serif;
@include flex(center, center);
@include text-sizing(14px, 500, 32px);
}
}
}
.compose-standalone {
.compose-form {
width: 400px;
margin: 0 auto;
padding: 20px 0;
margin-top: 40px;
box-sizing: border-box;
@media screen and (max-width: 400px) {
width: 100%;
margin-top: 0;
padding: 20px;
}
}
}
.account-header {
width: 400px;
margin: 0 auto;
display: flex;
box-sizing: border-box;
padding: 20px 0 0 0;
@include text-sizing(13px, 400, 18px);
@include vertical-margin(40px, -30px);
@media screen and (max-width: 440px) {
width: 100%;
margin: 0 0 10px 0;
padding: 20px 20px 0 20px;
}
.avatar {
margin-right: 8px;
@include size(40px);
img {
display: block;
margin: 0;
border-radius: 4px;
@include size(100%);
}
}
.name {
flex: 1 1 auto;
color: $secondary-text-color;
width: calc(100% - 88px);
.username {
display: block;
font-weight: 500;
@include text-overflow;
}
}
.logout-link {
display: block;
margin-left: 8px;
@include text-sizing(32px, 400, 40px);
}
}
.grid-3 {
display: grid;
grid-gap: 10px;
grid-template-columns: 3fr 1fr;
grid-auto-columns: 25%;
grid-auto-rows: max-content;
.column-0 {
grid-column: 1/3;
grid-row: 1;
}
.column-1 {
grid-column: 1;
grid-row: 2;
}
.column-2 {
grid-column: 2;
grid-row: 2;
}
.column-3 {
grid-column: 1/3;
grid-row: 3;
}
.landing-page__call-to-action {
min-height: 100%;
}
@media screen and (max-width: 738px) {
grid-template-columns: minmax(0, 50%) minmax(0, 50%);
.landing-page__call-to-action {
padding: 20px;
@include flex(center, center);
}
.row__information-board {
width: 100%;
justify-content: center;
align-items: center;
}
}
@media screen and (max-width: $no-gap-breakpoint) {
grid-gap: 0;
grid-template-columns: minmax(0, 100%);
.column-0 {
grid-column: 1;
}
.column-1 {
grid-column: 1;
grid-row: 3;
}
.column-2 {
grid-column: 1;
grid-row: 2;
}
.column-3 {
grid-column: 1;
grid-row: 4;
}
}
}
.public-layout {
.container {
max-width: 960px;
@media screen and (max-width: $no-gap-breakpoint) {
padding: 0;
}
}
.content {
display: block;
margin: 40px 0;
}
.background-svg {
display: block;
position: absolute;
min-height: 580px;
z-index: -1;
@include size(100%);
@include background-image('/landing/wave.svg', cover, bottom);
}
.header {
height: 80px;
padding: 14px 0;
box-sizing: border-box;
@include flex(center, stretch, row, nowrap);
@media screen and (max-width: 1024px) {
padding: 14px 20px;
}
.header-container {
width: 960px;
@include flex(center, stretch, row, nowrap);
&>div {
flex: 1 1 33.3%;
min-height: 1px;
}
}
.nav-left {
@include flex(flex-start, center, row, nowrap);
}
.nav-center {
@include flex(center, stretch, row, nowrap);
}
.nav-right {
@include flex(flex-end, center, row, nowrap);
.simple_form.new_user {
@include flex(flex-start, center, row);
.fields-group {
display: flex;
flex-direction: row;
margin-bottom: 0;
position: relative;
p.hint.subtle-hint {
position: absolute;
top: 30px;
left: 160px;
a {
padding: 4px;
border-radius: 4px;
background-color: $ui-base-color;
}
}
.input {
margin-bottom: 0;
margin-right: 10px;
input {
min-width: 150px;
font-size: 14px;
}
}
}
.actions {
display: flex;
margin-top: 0;
.button {
margin-bottom: 0 !important;
line-height: 38px !important;
border: 1px solid #333 !important;
height: 38px !important;
box-sizing: border-box !important;
padding: 0 18px !important;
text-transform: none !important;
}
}
}
}
.brand {
display: block;
img {
display: block;
position: relative;
bottom: -2px;
@include size(auto, 30px);
@media screen and (max-width: $no-gap-breakpoint) {
height: 20px;
}
}
}
.nav-link {
display: flex;
align-items: center;
padding: 12px 22px;
text-decoration: none;
color: $primary-text-color;
white-space: nowrap;
@include text-sizing(14px, 600, 1, center);
&:hover,
&:focus,
&:active {
text-decoration: underline;
color: $primary-text-color;
}
&--hollow {
background-color: $ui-base-color;
&:hover,
&:focus,
&:active {
color: $gab-brand-default;
}
}
@media screen and (max-width: 550px) {
font-size: 12px;
padding: 12px 10px;
&.optional {
display: none;
}
}
}
.nav-button {
background: $gab-brand-default;
margin: 8px;
margin-left: 0;
border-radius: 4px;
&:hover,
&:focus,
&:active {
text-decoration: none;
background: darken($gab-brand-default, 10%);
}
&--hollow {
background: transparent;
&:hover,
&:focus,
&:active {
background: rgba($gab-brand-default, 0.2);
}
}
}
}
$no-columns-breakpoint: 600px;
.grid {
display: grid;
grid-gap: 10px;
grid-template-columns: minmax(300px, 3fr) minmax(298px, 1fr);
grid-auto-columns: 25%;
grid-auto-rows: max-content;
.column-0 {
grid-row: 1;
grid-column: 1;
}
.column-1 {
grid-row: 1;
grid-column: 2;
}
@media screen and (max-width: $no-columns-breakpoint) {
grid-template-columns: 100%;
grid-gap: 0;
.column-1 {
display: none;
}
}
}
.public-account-header {
overflow: hidden;
margin-bottom: 10px;
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
&.inactive {
opacity: 0.5;
.public-account-header__image,
.avatar {
filter: grayscale(100%);
}
.logo-button {
background-color: $secondary-text-color;
}
}
&__image {
border-radius: 4px 4px 0 0;
overflow: hidden;
height: 300px;
position: relative;
background: darken($ui-base-color, 12%);
&::after {
box-shadow: inset 0 -1px 1px 1px rgba($base-shadow-color, 0.15);
top: 0;
left: 0;
@include pseudo;
@include size(100%);
}
img {
object-fit: cover;
display: block;
margin: 0;
border-radius: 4px 4px 0 0;
@include size(100%);
}
@include breakpoint(sm) {
height: 200px;
}
}
&--no-bar {
margin-bottom: 0;
.public-account-header__image,
.public-account-header__image img {
border-radius: 4px;
@media screen and (max-width: $no-gap-breakpoint) {
border-radius: 0;
}
}
}
@media screen and (max-width: $no-gap-breakpoint) {
margin-bottom: 0;
box-shadow: none;
&__image::after {
display: none;
}
&__image,
&__image img {
border-radius: 0;
}
}
&__bar {
position: relative;
margin-top: -80px;
@include flex(flex-start);
&::before {
background: lighten($ui-base-color, 4%);
height: 60px;
border-radius: 0 0 4px 4px;
z-index: -1;
@include pseudo;
@include abs-position(auto, 0, 0, 0, false);
}
.avatar {
display: block;
padding-left: 20px - 4px;
flex: 0 0 auto;
@include size(120px);
img {
display: block;
margin: 0;
border: 4px solid lighten($ui-base-color, 4%);
background: darken($ui-base-color, 8%);
@include circle(100%);
}
}
@include breakpoint(sm) {
margin-top: 0;
background: lighten($ui-base-color, 4%);
border-radius: 0 0 4px 4px;
padding: 5px;
&::before {
display: none;
}
.avatar {
padding: 7px 0 7px 10px;
@include size(48px);
img {
border: 0;
border-radius: 4px;
}
@media screen and (max-width: 360px) {
display: none;
}
}
}
@media screen and (max-width: $no-gap-breakpoint) {
border-radius: 0;
}
@media screen and (max-width: $no-columns-breakpoint) {
flex-wrap: wrap;
}
}
&__tabs {
flex: 1 1 auto;
margin-left: 20px;
&__name {
@include vertical-padding(20px 8px);
h1 {
color: $primary-text-color;
text-shadow: 1px 1px 1px $base-shadow-color;
@include text-overflow(nowrap);
@include text-sizing(20px, 500, 27px);
small {
display: block;
color: $primary-text-color;
@include text-overflow;
@include text-sizing(14px, 400);
}
}
}
@include breakpoint(sm) {
margin-left: 15px;
@include flex(space-between, center);
&__name {
@include vertical-padding(0);
h1 {
font-size: 16px;
line-height: 24px;
text-shadow: none;
small {
color: $darker-text-color;
}
}
}
}
&__tabs {
height: 58px;
@include flex(flex-start, stretch);
.details-counters {
display: flex;
flex-direction: row;
min-width: 300px;
}
@media screen and (max-width: $no-columns-breakpoint) {
.details-counters {
display: none;
}
}
.counter {
width: 33.3%;
box-sizing: border-box;
flex: 0 0 auto;
color: $darker-text-color;
padding: 10px;
border-right: 1px solid lighten($ui-base-color, 4%);
cursor: default;
text-align: center;
position: relative;
a {
display: block;
}
&:last-child {
border-right: 0;
}
&::after {
bottom: 0;
left: 0;
width: 100%;
border-bottom: 4px solid $ui-primary-color;
opacity: 0.5;
transition: all 400ms ease;
@include pseudo;
}
&.active {
&::after {
border-bottom: 4px solid $highlight-text-color;
opacity: 1;
}
&.inactive::after {
border-bottom-color: $secondary-text-color;
}
}
&:hover {
&::after {
opacity: 1;
transition-duration: 100ms;
}
}
a {
text-decoration: none;
color: inherit;
}
.counter-label {
font-size: 12px;
display: block;
}
.counter-number {
margin-bottom: 5px;
color: $primary-text-color;
font-family: $font-display, sans-serif;
@include text-sizing(18px, 500);
}
}
.spacer {
flex: 1 1 auto;
height: 1px;
}
&__buttons {
padding: 7px 8px;
}
}
}
&__extra {
display: none;
margin-top: 4px;
.public-account-bio {
border-radius: 0;
box-shadow: none;
background: transparent;
margin: 0 -5px;
.account__header__fields {
border-top: 1px solid lighten($ui-base-color, 12%);
}
.roles {
display: none;
}
}
&__links {
margin-top: -15px;
font-size: 14px;
color: $darker-text-color;
a {
display: inline-block;
color: $darker-text-color;
text-decoration: none;
@include text-sizing(15px, 500);
strong {
font-weight: 700;
color: $primary-text-color;
}
}
}
@media screen and (max-width: $no-columns-breakpoint) {
display: block;
flex: 100%;
}
}
}
.account-section-headline {
border-radius: 4px 4px 0 0;
@media screen and (max-width: $no-gap-breakpoint) {
border-radius: 0;
}
}
.detailed-status__meta {
margin-top: 25px;
}
.public-account-bio {
background: lighten($ui-base-color, 8%);
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
border-radius: 4px;
overflow: hidden;
margin-bottom: 10px;
@media screen and (max-width: $no-gap-breakpoint) {
box-shadow: none;
margin-bottom: 0;
border-radius: 0;
}
.account__header__fields {
margin: 0;
border-top: 0;
a {
color: lighten($ui-highlight-color, 8%);
}
dl:first-child .verified {
border-radius: 0 4px 0 0;
}
.verified a {
color: $valid-value-color;
}
}
.account__header__content {
padding: 20px;
padding-bottom: 0;
color: $primary-text-color;
}
&__extra,
.roles {
padding: 20px;
font-size: 14px;
color: $darker-text-color;
}
.roles {
padding-bottom: 0;
}
}
.static-icon-button {
color: $action-button-color;
font-size: 18px;
&>span {
@include text-sizing(14px, 500);
}
}
.card-grid {
display: flex;
flex-wrap: wrap;
min-width: 100%;
margin: 0 -5px;
&>div {
box-sizing: border-box;
flex: 1 0 auto;
width: 300px;
padding: 0 5px;
margin-bottom: 10px;
max-width: 33.333%;
@media screen and (max-width: 900px) {
max-width: 50%;
}
@include breakpoint(sm) {
max-width: 100%;
}
}
@media screen and (max-width: $no-gap-breakpoint) {
margin: 0;
border-top: 1px solid lighten($ui-base-color, 8%);
&>div {
width: 100%;
padding: 0;
margin-bottom: 0;
border-bottom: 1px solid lighten($ui-base-color, 8%);
&:last-child {
border-bottom: 0;
}
.card__bar {
background: $ui-base-color;
&:hover,
&:active,
&:focus {
background: lighten($ui-base-color, 4%);
}
}
}
}
}
}