Комментарий #10850468

grin3671
1376x760
Заготовка темы «Карточки в профиле» с использованием subgrid (т.е. не будет работать в Windows 7).
css
/* Внешний вид карточек */
#profiles_show .profile-head .c-brief,
#profiles_show .profile-head .b-stats_bar,
#profiles_show .profile-head .c-additionals,
#profiles_show .profile-head .c-history,
#profiles_show .profile-content > .achievements,
#profiles_show .profile-content > .cc-2 > .c-left,
#profiles_show .profile-content > .cc-2 > .c-right > .cc-2a,
#profiles_show .profile-content > .cc-2 > .c-right > [class="block"],
#profiles_show .profile-content > .about,
#profiles_show .profile-content > [class="block"] {
  position: relative;
  width: 100%;
  margin: 0 !important;
  background: #fff;
  border: thin solid var(--headline-border-color);
  overflow: hidden;
  z-index: 1;
}

/* Настройка столбиков и строк в профиле */
#profiles_show .l-page > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 15px;
}

/* Саб-гриды */
#profiles_show .profile-head,
#profiles_show .profile-head .c-info,
#profiles_show .profile-head .c-lists-info,
#profiles_show .profile-content,
#profiles_show .profile-content > .cc-2,
#profiles_show .profile-content > .cc-2 > .c-right {
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  margin: 0;
}

/* Информация */
#profiles_show .profile-head .c-brief {
  grid-column: 1;
  grid-row: 1;
}

/* История */
#profiles_show .profile-head .c-history {
  grid-column: 3;
  grid-row: 2;
}

/* Список аниме */
#profiles_show .profile-head .b-stats_bar.anime {
  grid-column: 2;
  grid-row: 1;
}

/* Список манги */
#profiles_show .profile-head .b-stats_bar.manga {
  grid-column: 3;
  grid-row: 1;
}

/* Активность (скрыто за достижениями) */
#profiles_show .profile-head .c-additionals {
  grid-column: 4;
  grid-row: 1;
}

/* Графики активности */
#profiles_show .profile-content > .cc-2 > .c-left {
  grid-column: 4;
  grid-row: 2;
}

/* Друзья и Клубы */
#profiles_show .profile-content > .cc-2 > .c-right > .cc-2a {
  grid-column: 1;
  grid-row: 2;
}

/* Избранное */
#profiles_show .profile-content > .cc-2 > .c-right > [class="block"] {
  grid-column: 2;
  grid-row: 2;
}

/* Достижения */
#profiles_show .profile-content > .achievements {
  grid-column: 4;
  grid-row: 1;
}

/* О себе */
#profiles_show .profile-content > .about {
  grid-column: 1 / -1;
  grid-row: 3;
}

/* Лента */
#profiles_show .profile-content > [class="block"] {
  grid-column: 1 / -1;
  grid-row: 4;
}



/* ДОПОЛНЕНИЯ */
#profiles_show .l-page {
  background: transparent;
  outline: none;
}
#profiles_show .profile-head .avatar {
  float: none;
  margin: 15px auto;
}
#profiles_show .profile-head .c-brief header {
  margin: 0 15px;
  white-space: normal;
}
#profiles_show .profile-head .c-info {
  overflow: visible;
}
#profiles_show .profile-content > .cc-2 > .c-right > .cc-2a > .c-column {
  width: 100%;
}

Я хотел добавить круглые списки и видоизмененные графики активности по типу дашбордов, но лень и времени нет, может кто-то из этого что-то стоящее придумает..
Ответы
Dedonych
Dedonych#
@grin3671, Очень интересная тема. Круто выглядит!
1680x1050Вот что я накидал
назад
Твой комментарий
Вернуться к редактированию
Предпросмотр
Скрыть