mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
262 lines
4.2 KiB
Plaintext
262 lines
4.2 KiB
Plaintext
@import '~themes/default';
|
|
|
|
.textOverflow() {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-break: break-all;
|
|
}
|
|
|
|
// mixins for clearfix
|
|
// ------------------------
|
|
.clearfix() {
|
|
zoom: 1;
|
|
&::before,
|
|
&::after {
|
|
display: table;
|
|
content: ' ';
|
|
}
|
|
&::after {
|
|
clear: both;
|
|
height: 0;
|
|
font-size: 0;
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
|
|
.activitiesList {
|
|
padding: 0 24px 8px 24px;
|
|
.username {
|
|
color: @text-color;
|
|
}
|
|
.event {
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
|
|
.pageHeaderContent {
|
|
display: flex;
|
|
.avatar {
|
|
flex: 0 1 72px;
|
|
& > span {
|
|
display: block;
|
|
width: 92px;
|
|
height: 92px;
|
|
}
|
|
}
|
|
.content {
|
|
font-family: "Poppins", sans-serif;
|
|
position: relative;
|
|
top: 4px;
|
|
flex: 1 1 auto;
|
|
margin-left: 24px;
|
|
color: @text-color-secondary;
|
|
line-height: 22px;
|
|
.contentTitle {
|
|
|
|
color: @heading-color;
|
|
font-weight: 500;
|
|
font-size: 20px;
|
|
line-height: 28px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.extraContent {
|
|
.clearfix();
|
|
|
|
float: right;
|
|
white-space: nowrap;
|
|
.statItem {
|
|
position: relative;
|
|
display: inline-block;
|
|
padding: 0 32px;
|
|
> p:first-child {
|
|
margin-bottom: 4px;
|
|
color: @text-color-secondary;
|
|
font-size: @font-size-base;
|
|
line-height: 22px;
|
|
}
|
|
> p {
|
|
margin: 0;
|
|
color: @heading-color;
|
|
font-size: 30px;
|
|
line-height: 38px;
|
|
> span {
|
|
color: @text-color-secondary;
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
&::after {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 0;
|
|
width: 1px;
|
|
height: 40px;
|
|
background-color: @border-color-split;
|
|
content: '';
|
|
}
|
|
&:last-child {
|
|
padding-right: 0;
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.members {
|
|
a {
|
|
display: block;
|
|
height: 24px;
|
|
margin: 12px 0;
|
|
color: @text-color;
|
|
transition: all 0.3s;
|
|
.textOverflow();
|
|
.member {
|
|
margin-left: 12px;
|
|
font-size: @font-size-base;
|
|
line-height: 24px;
|
|
vertical-align: top;
|
|
}
|
|
&:hover {
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.projectList {
|
|
:global {
|
|
.ant-card-meta-description {
|
|
height: 44px;
|
|
overflow: hidden;
|
|
color: @text-color-secondary;
|
|
line-height: 22px;
|
|
}
|
|
}
|
|
.cardTitle {
|
|
font-size: 0;
|
|
a {
|
|
display: inline-block;
|
|
height: 24px;
|
|
margin-left: 12px;
|
|
color: @heading-color;
|
|
font-size: @font-size-base;
|
|
line-height: 24px;
|
|
vertical-align: top;
|
|
&:hover {
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
}
|
|
.projectGrid {
|
|
width: 33.33%;
|
|
}
|
|
.projectItemContent {
|
|
display: flex;
|
|
height: 20px;
|
|
margin-top: 8px;
|
|
overflow: hidden;
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
.textOverflow();
|
|
a {
|
|
display: inline-block;
|
|
flex: 1 1 0;
|
|
color: @text-color-secondary;
|
|
.textOverflow();
|
|
&:hover {
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
.datetime {
|
|
flex: 0 0 auto;
|
|
float: right;
|
|
color: @disabled-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.datetime {
|
|
color: @disabled-color;
|
|
}
|
|
|
|
@media screen and (max-width: @screen-xl) and (min-width: @screen-lg) {
|
|
.activeCard {
|
|
margin-bottom: 24px;
|
|
}
|
|
.members {
|
|
margin-bottom: 0;
|
|
}
|
|
.extraContent {
|
|
margin-left: -44px;
|
|
.statItem {
|
|
padding: 0 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: @screen-lg) {
|
|
.activeCard {
|
|
margin-bottom: 24px;
|
|
}
|
|
.members {
|
|
margin-bottom: 0;
|
|
}
|
|
.extraContent {
|
|
float: none;
|
|
margin-right: 0;
|
|
.statItem {
|
|
padding: 0 16px;
|
|
text-align: left;
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: @screen-md) {
|
|
.extraContent {
|
|
margin-left: -16px;
|
|
}
|
|
.projectList {
|
|
.projectGrid {
|
|
width: 50%;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: @screen-sm) {
|
|
.pageHeaderContent {
|
|
display: block;
|
|
margin: 10px;
|
|
.content {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
.extraContent {
|
|
.statItem {
|
|
float: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: @screen-xs) {
|
|
.projectList {
|
|
.projectGrid {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.main_container {
|
|
width: 1200px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
.main_content {
|
|
padding: 10px 20px;
|
|
} |