soapbox/app/styles/components/group-detail.scss

85 wiersze
1.5 KiB
SCSS
Czysty Zwykły widok Historia

2020-03-27 20:59:38 +00:00
.group {
2020-05-29 00:58:37 +00:00
.group__header-container {
width: 100%;
display: flex;
justify-content: center;
flex-direction: row;
}
.group__header {
width: 100%;
max-width: 1150px;
2020-06-02 22:42:09 +00:00
background: var(--foreground-color);
2020-05-29 00:58:37 +00:00
border-radius: 10px;
overflow: hidden;
margin: 20px 0;
.group__cover {
img {
2020-03-27 20:59:38 +00:00
width: 100%;
2020-05-29 00:58:37 +00:00
}
2020-03-27 20:59:38 +00:00
}
2020-05-29 00:58:37 +00:00
.group__tabs {
.group__tabs__tab {
display: inline-block;
text-decoration: none;
padding: 16px 22px;
2020-05-29 00:58:37 +00:00
text-align: center;
2020-05-31 23:44:20 +00:00
color: var(--primary-text-color);
2020-03-27 20:59:38 +00:00
2020-05-29 00:58:37 +00:00
&:hover,
&--active {
2020-05-31 23:44:20 +00:00
border-bottom: 2px solid var(--primary-text-color);
2020-03-27 20:59:38 +00:00
}
2020-05-29 00:58:37 +00:00
}
2020-03-27 20:59:38 +00:00
2020-05-29 00:58:37 +00:00
&::after {
content: "";
clear: both;
display: table;
}
2020-03-27 20:59:38 +00:00
2020-05-29 00:58:37 +00:00
button {
float: right;
margin: 7px;
}
2020-03-27 20:59:38 +00:00
2020-05-29 00:58:37 +00:00
div {
float: right;
margin: 4px;
}
2020-03-27 20:59:38 +00:00
}
2020-05-29 00:58:37 +00:00
}
2020-03-27 20:59:38 +00:00
2020-05-29 00:58:37 +00:00
.group__panel {
padding: 10px 10px 20px;
2020-03-27 20:59:38 +00:00
2020-05-29 00:58:37 +00:00
h1 {
font-size: 22px;
font-weight: bold;
margin-bottom: 10px;
}
2020-03-27 20:59:38 +00:00
2020-05-29 00:58:37 +00:00
.group__panel__description {
font-size: 14px;
2020-03-27 20:59:38 +00:00
}
2020-05-29 00:58:37 +00:00
.group__panel__label {
display: inline-block;
margin-bottom: 10px;
border-radius: 4px;
2020-06-02 22:42:09 +00:00
background: var(--foreground-color);
2020-05-29 00:58:37 +00:00
font-size: 13px;
padding: 4px 8px;
2020-03-27 20:59:38 +00:00
}
2020-05-29 00:58:37 +00:00
}
.group__feed {
2020-06-02 22:42:09 +00:00
background: var(--foreground-color);
2020-05-29 00:58:37 +00:00
border-top-left-radius: 10px;
border-top-right-radius: 10px;
overflow: hidden;
}
2020-03-27 20:59:38 +00:00
}