2021-01-20 04:39:49 +00:00
|
|
|
.joe_dropdown {
|
2021-03-31 08:45:08 +00:00
|
|
|
position: relative;
|
|
|
|
&__link {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
&-icon {
|
|
|
|
transition: transform 0.35s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__menu {
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
visibility: hidden;
|
|
|
|
z-index: 999;
|
|
|
|
border-top: 3px solid var(--theme);
|
|
|
|
transform-origin: top;
|
|
|
|
background: var(--background);
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
|
|
|
border-radius: 0 0 var(--radius-inner) var(--radius-inner);
|
|
|
|
padding: 10px 0;
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateX(-50%) perspective(600px) rotateX(-45deg);
|
|
|
|
transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: -10px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
border-bottom: 7px solid var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.active {
|
|
|
|
.joe_dropdown__link-icon {
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
}
|
|
|
|
.joe_dropdown__menu {
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateX(-50%) perspective(600px) rotateX(0);
|
|
|
|
}
|
|
|
|
}
|
2021-01-20 04:39:49 +00:00
|
|
|
}
|
|
|
|
|
2021-01-19 09:56:21 +00:00
|
|
|
.joe_header {
|
2021-03-31 08:45:08 +00:00
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
background: var(--background);
|
|
|
|
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
&__above {
|
|
|
|
position: relative;
|
|
|
|
z-index: 999;
|
|
|
|
background: var(--background);
|
|
|
|
.joe_container {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
&-logo {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 60px;
|
|
|
|
padding-right: 15px;
|
|
|
|
margin-right: 15px;
|
|
|
|
img {
|
|
|
|
max-width: 150px;
|
|
|
|
max-height: 50px;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
svg {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
right: 0;
|
|
|
|
width: 1px;
|
|
|
|
height: 20px;
|
|
|
|
background: var(--classC);
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-nav {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.item {
|
|
|
|
position: relative;
|
|
|
|
height: 60px;
|
|
|
|
line-height: 60px;
|
|
|
|
font-size: 15px;
|
|
|
|
padding: 0 8px;
|
|
|
|
margin-right: 15px;
|
|
|
|
transition: color 0.35s;
|
|
|
|
white-space: nowrap;
|
|
|
|
color: var(--main);
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 3px;
|
|
|
|
transition: opacity 0.5s, transform 0.5s;
|
|
|
|
border-radius: 6px 6px 0 0;
|
|
|
|
opacity: 0;
|
|
|
|
transform: scaleX(0.25);
|
|
|
|
background: var(--theme);
|
|
|
|
}
|
|
|
|
&.active,
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
&::after {
|
|
|
|
opacity: 1;
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_dropdown {
|
|
|
|
&__link {
|
|
|
|
a {
|
|
|
|
height: 60px;
|
|
|
|
line-height: 60px;
|
|
|
|
font-size: 15px;
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 3px;
|
|
|
|
transition: color 0.35s;
|
|
|
|
white-space: nowrap;
|
|
|
|
color: var(--main);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__menu {
|
|
|
|
width: 110px;
|
|
|
|
text-align: center;
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
line-height: 34px;
|
|
|
|
height: 34px;
|
|
|
|
transition: color 0.35s, background 0.35s;
|
|
|
|
color: var(--minor);
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
padding: 0 15px;
|
|
|
|
&:hover,
|
|
|
|
&.active {
|
|
|
|
color: var(--theme);
|
|
|
|
background: var(--classD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-search {
|
|
|
|
position: relative;
|
|
|
|
margin-left: auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.input {
|
|
|
|
background: var(--classC);
|
|
|
|
width: 170px;
|
|
|
|
height: 34px;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
padding: 0 18px;
|
|
|
|
color: var(--routine);
|
|
|
|
transition: background 0.35s, border-color 0.35s, padding-right 0.35s;
|
|
|
|
border-radius: 17px 0 0 17px;
|
|
|
|
&:focus {
|
|
|
|
background: var(--background);
|
|
|
|
border-color: var(--theme);
|
|
|
|
padding-right: 28px;
|
|
|
|
~ .icon {
|
|
|
|
transform: translate3d(0, -50%, 0) rotateY(180deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.submit {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
height: 34px;
|
|
|
|
border: none;
|
|
|
|
background: var(--theme);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 0 17px 17px 0;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 142px;
|
|
|
|
width: 28px;
|
|
|
|
height: 38px;
|
|
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAmCAYAAADX7PtfAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAHKElEQVRYw93Xe3DNdxrH8ecXiSK7i1qWFWW3rekiE2x3VEemtkkVVbWy4jY6atma2YpS6rJoozvbpRF1qW1EEYIk5xZE5EKE3CQi0SB30VwEIeeWnDi3nPf+kUNTE1R3mNn945n5nZkz8zrP53y/39/3EUCeZsn/HCgi80Rky1MDn/H2vjB6SpBVRMb9V6CI+InIBhE58bOez5b9xm9E0wu//0NTr/4+9SKyX0TGicjiP320kpBd+xCRv/0kUFEUf49OnfJGBwWzWn3UcfCGSa8xO1zxFoi3gLbJyZb8S/QeOIhRb0/hiA1GvjkREfF9bFBEQv0C3ySyrIaEO5DjaCXFYkdttKEyWFEbrKiNNjRmBztLrrIqVsfAYb507tJVryjKi48FisiK8Qs/IL4FVEYbOTY7l3FSjJNCp4PDpnZoOzi+BSKKq+j3wostiqK8/KPBv27+6pja9H03uXYHl3FwyeWgGCcFTscPwXalMdnZU1VPn4GDTCLS90eB2ibHHpXRhtpgRWWwkmqxU4yTEpwcvaUno7kZ7f1dtitds4tVcYcRkZMiskhRlCEPBdUG2/a7oNpoQ2Oyc8zUwrsp+QREp7CxpA6N0YbaaENtvBtrW2lMdsIy8xn00u/4aPly9h04QEBgICKy+oGgymiNUBltaN2xflxwlUmqdArKvyX0RBZf1ejbge5y/zi10cbg4SO4Ul3N8dRUqmprcQETJ01CUZQxHXdotH+jMtpYdLact9RniMzOxX6rDAzlrEzOIKLO+EPMXRqTnbCs88yePQuA18aOpWuPXuyIiKCouBgROfQA0Bq1tqiGsPRsMFbiaigBfQXoy1mZnMnOa6YOMBsHb7ewKbuAWTNnAhAQGEjPPn3JyMmh2W5HUZScDkGd0b5/RuoFqmtLiNj8GSLCxcwEMFTw95RM/l1ruBepxtTW2YKMYiYdPouuycHg4SOpqa8nTqPhclkZDuBcYSEiEtMxaLZHByXmU1qUiYeHByLCsZhIMFayPfMs/yy9TrzZQZzByqeX6pigzSLqbB5z4k+jNTvYcCqbvj4++i/Cwi7kFZxvidq/3+UzYAAi8l6HYLzZfiAoIZfoiHBEBBGhNDcZ9BXkln5LoCaLoMR8punOsCM7j8b6EjBWsDjxDHtuNKE1O9h95RrT14QyJngm01at48u8IkTktPtg6da9e/dffb8PTXbVVG0mqRva4pw8PgBMV6CxHBrLuVhZRMO1Ypw3LrPt8zXYrl8CfTmrUzL5ut2C0jY50TW3om1yEm+B/oNf0rvBYfPff//59pEefUd9BtKPU5oQS+vtMmgsx3W7DJf7GfNV5kyfgoiQpNoNxko+Tsog8u6Cuu8wiLfAb/2Gt7hBRUR6tAdTpmozQV/etjrbYXfBxspzKEpb3MU5x8FYwUxdOirDfXvTvT+1TU569vt17YP+w+RJ0ae4WdUWlcsdJfqKtmd9BWcSDiIijHvdH8xVVFdfYmpiPjqznQP1BmIamu6dRBqTnfCcQkQkukPQPyZdNToqzfZWaLKzuvwiGCpoLcrAnqS917G1/iKfL5iLMUkH3xWiK8hnWX4Vhy0uJi9ayqpYHRqzo+1stbgIePc9u4i83iE4O7128cvRp1mRZ2Hy+qRWQ25aW2d1RW0x3+04/zScTITcNJYmZxFxzcj+2lsM8vUjrrHlXrRR1Q107tLlYodnqaIo2iHDhlp8g+bzaSkcqbO0xiXn80boCdbtOkXuuUJuVRdjqbuI42YxNXmpLFkwh6FvTOCoDdeYP09nVazOpWtuRW20oWtu5Z0PlyMiwR2CIrJbG7WNyPD1DBrxCoEh61snhEYwcc1WXvnLelffgOX6gcE7VN1+3sM2cuwfEU9PRCRtftgWQnbupVf/AQSvXMta3TE0ZgeHbprx7tGz6oGvJxHx8vDyOr35sxWYrp4n8VAEsZGbiNsVTvy+7TzXr0+j+3sHRkx4G1GUnc90885bGhWDh4dHlqIo10Xk9oqDanQWF/M3bUVEPnjo+/CTEkJeXbgOX9+h/GPlIrR7t3I8difHYiLp3evZanf03iIyQkR6iKcXnl6dTymK0lVRFD8RmTpj7XqO2mDIq/6ISM+HgicbnPM+r4TVhS1M26IhYNlGxixcg4hiFpHnOrjd/fL+z8P8XyPmtoVOXl6Zj7xinLrpnLux3EXaDQff1ED4dxD8ZRwisvYxbuHquf8KR0Q2PRJcdcm5JL3BwR2blRablVZg1KhRLkVRej8GOFg6dUJEFj0S3F3NYpPVRrPNSovDweGEBERkx0+YNWYoivL8I8E7Tue8O04nFrsdBzDG3x8R8Xli01NISMiSrdu2kZGTzd7oaERk7xMd12ZFJC0b/8nX9Brsh4ikiUj3Jwpes/Ph3qzLeHb7RbGIeD7xgfRIQsIyH5/+RkVR+j+VCXjkyJHdFEXx/r+b8f8DZyW8Jd6/P38AAAAldEVYdGRhdGU6Y3JlYXRlADIwMjEtMDItMjBUMTE6NTI6MjQrMDA6MDA4bfPmAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIxLTAyLTIwVDExOjUyOjI0KzAwOjAwSTBLWgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAASUVORK5CYII=);
|
|
|
|
background-size: 100% 100%;
|
|
|
|
transition: transform 0.35s;
|
|
|
|
transform: translate3d(100%, -50%, 0) rotateY(180deg);
|
|
|
|
}
|
|
|
|
.result {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
top: 60px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background: var(--background);
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
transition: visibility 0.35s, opacity 0.35s, transform 0.35s;
|
|
|
|
transform: translate3d(0, 15px, 0);
|
|
|
|
&.active {
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
.item {
|
|
|
|
height: 40px;
|
|
|
|
line-height: 40px;
|
|
|
|
border-bottom: 1px solid var(--classD);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 10px;
|
|
|
|
transition: background 0.35s;
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
&:nth-child(1) .sort {
|
|
|
|
background: #fe2d46;
|
|
|
|
}
|
|
|
|
&:nth-child(2) .sort {
|
|
|
|
background: #f60;
|
|
|
|
}
|
|
|
|
&:nth-child(3) .sort {
|
|
|
|
background: #faa90e;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background: var(--classD);
|
|
|
|
}
|
|
|
|
.sort {
|
|
|
|
color: #fff;
|
|
|
|
background: #7f7f8c;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
line-height: 18px;
|
|
|
|
border-radius: 2px;
|
|
|
|
text-align: center;
|
|
|
|
margin-right: 8px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
color: var(--routine);
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.views {
|
|
|
|
color: var(--seat);
|
|
|
|
font-size: 12px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-searchicon,
|
|
|
|
&-slideicon {
|
|
|
|
display: none;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
fill: var(--routine);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
&-searchicon {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__below {
|
|
|
|
position: relative;
|
|
|
|
border-top: 1px solid var(--classC);
|
|
|
|
height: 45px;
|
|
|
|
&-class {
|
|
|
|
display: flex;
|
|
|
|
.item {
|
|
|
|
margin-right: 15px;
|
|
|
|
color: var(--minor);
|
|
|
|
height: 45px;
|
|
|
|
line-height: 45px;
|
|
|
|
transition: color 0.35s;
|
|
|
|
white-space: nowrap;
|
|
|
|
&:hover,
|
|
|
|
&.active {
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_dropdown {
|
|
|
|
margin-right: 15px;
|
|
|
|
&__link {
|
|
|
|
.item {
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__menu {
|
|
|
|
width: 110px;
|
|
|
|
text-align: center;
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
height: 34px;
|
|
|
|
line-height: 34px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
color: var(--minor);
|
|
|
|
transition: color 0.35s, background 0.35s;
|
|
|
|
&:hover,
|
|
|
|
&.active {
|
|
|
|
color: var(--theme);
|
|
|
|
background: var(--classD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-progress {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
left: 0;
|
|
|
|
bottom: -3px;
|
|
|
|
height: 3px;
|
|
|
|
border-radius: 1.5px;
|
|
|
|
background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff);
|
|
|
|
transition: width 0.35s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__searchout {
|
|
|
|
position: absolute;
|
|
|
|
top: 60px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 890;
|
|
|
|
background: var(--background);
|
|
|
|
border-top: 1px solid var(--classC);
|
|
|
|
transform: translate3d(0, -100%, 0);
|
|
|
|
transition: transform 0.35s, visibility 0.35s;
|
|
|
|
visibility: hidden;
|
|
|
|
&.active {
|
|
|
|
visibility: visible;
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
&-inner {
|
|
|
|
padding: 15px 0;
|
|
|
|
width: 100%;
|
|
|
|
.search {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
input {
|
|
|
|
flex: 1;
|
|
|
|
height: 36px;
|
|
|
|
padding: 0 10px;
|
|
|
|
border: 1px solid var(--classB);
|
|
|
|
border-right: none;
|
|
|
|
border-radius: 2px 0 0 2px;
|
|
|
|
color: var(--routine);
|
|
|
|
background: var(--classD);
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
padding: 0 10px;
|
|
|
|
height: 36px;
|
|
|
|
border: none;
|
|
|
|
background: var(--theme);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 0 2px 2px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
color: var(--routine);
|
|
|
|
padding: 15px 0 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.icon {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
fill: var(--routine);
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.cloud {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin: 0 -5px -5px;
|
|
|
|
.item {
|
|
|
|
padding: 5px;
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
padding: 0 10px;
|
|
|
|
height: 24px;
|
|
|
|
line-height: 24px;
|
|
|
|
border-radius: 2px;
|
|
|
|
font-size: 12px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__slideout {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 80%;
|
|
|
|
z-index: 1020;
|
|
|
|
background: var(--classD);
|
|
|
|
transform: translate3d(-100%, 0, 0);
|
|
|
|
visibility: hidden;
|
|
|
|
transition: transform 0.35s, visibility 0.35s;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding: 135px 15px 15px;
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
&.active {
|
|
|
|
visibility: visible;
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
&-image {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 150px;
|
|
|
|
object-fit: cover;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
&-author {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
background: var(--background);
|
|
|
|
border-radius: var(--radius-wrap);
|
|
|
|
padding: 15px;
|
|
|
|
box-shadow: var(--box-shadow);
|
|
|
|
.avatar {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
margin-right: 10px;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
}
|
|
|
|
.info {
|
|
|
|
overflow: hidden;
|
|
|
|
line-height: 25px;
|
|
|
|
.link,
|
|
|
|
.motto {
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.link {
|
|
|
|
display: block;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--main);
|
|
|
|
}
|
|
|
|
.motto {
|
|
|
|
font-size: 12px;
|
|
|
|
color: var(--routine);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-count {
|
|
|
|
background: var(--background);
|
|
|
|
border-radius: var(--radius-wrap);
|
|
|
|
padding: 10px 15px;
|
|
|
|
box-shadow: var(--box-shadow);
|
|
|
|
margin-bottom: 15px;
|
|
|
|
.item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
color: var(--routine);
|
|
|
|
padding: 5px 0;
|
|
|
|
.icon {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
fill: var(--routine);
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
strong {
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-menu {
|
|
|
|
background: var(--background);
|
|
|
|
padding: 10px 15px;
|
|
|
|
border-radius: var(--radius-wrap);
|
|
|
|
overflow: hidden;
|
|
|
|
box-shadow: var(--box-shadow);
|
|
|
|
.link {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 10px 0;
|
|
|
|
color: var(--main);
|
|
|
|
transition: color 0.15s;
|
|
|
|
a {
|
|
|
|
transition: color 0.15s;
|
|
|
|
color: var(--routine);
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
width: 13px;
|
|
|
|
height: 13px;
|
|
|
|
fill: var(--minor);
|
|
|
|
transition: transform 0.15s, fill 0.15s;
|
|
|
|
}
|
|
|
|
&.in {
|
|
|
|
color: var(--theme);
|
|
|
|
a {
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
fill: var(--theme);
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.current {
|
|
|
|
a {
|
|
|
|
color: var(--theme);
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.slides {
|
|
|
|
display: none;
|
|
|
|
border-left: 1px solid var(--classC);
|
|
|
|
padding-left: 15px;
|
|
|
|
.link {
|
|
|
|
color: var(--routine);
|
|
|
|
}
|
|
|
|
.current {
|
|
|
|
color: var(--theme);
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__mask {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background: rgba(0, 0, 0, 0.65);
|
|
|
|
backdrop-filter: blur(5px);
|
|
|
|
opacity: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
transition: visibility 0.35s, opacity 0.35s;
|
|
|
|
z-index: 880;
|
|
|
|
&.active {
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
&.slideout {
|
|
|
|
z-index: 1010;
|
|
|
|
}
|
|
|
|
}
|
2021-01-20 04:39:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.joe_aside {
|
2021-03-31 08:45:08 +00:00
|
|
|
padding: 15px 0;
|
|
|
|
margin-left: 15px;
|
|
|
|
&__item {
|
|
|
|
position: relative;
|
|
|
|
width: 250px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
border-radius: var(--radius-wrap);
|
|
|
|
box-shadow: var(--box-shadow);
|
|
|
|
overflow: hidden;
|
|
|
|
&:last-child {
|
|
|
|
position: sticky;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
&-title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border-bottom: 1px solid var(--classC);
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
height: 45px;
|
|
|
|
line-height: 45px;
|
|
|
|
padding: 0 15px;
|
|
|
|
color: var(--main);
|
|
|
|
.icon {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
margin-right: 8px;
|
|
|
|
fill: var(--main);
|
|
|
|
}
|
|
|
|
.line {
|
|
|
|
width: 10px;
|
|
|
|
height: 1px;
|
|
|
|
background: #54b5db;
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-contain {
|
|
|
|
position: relative;
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
&.author {
|
|
|
|
background: var(--background);
|
|
|
|
padding: 45px 15px 15px;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 90px;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 30px;
|
|
|
|
z-index: 2;
|
|
|
|
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--background));
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
display: none;
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 273px;
|
|
|
|
background: url(data:image/gif;base64,R0lGODlhLAEsAfeEALfM6+PImP9w/df/y5i24+vZt8bX8Iir3v+kWv+7iP+rbf7+8mj/OuKV3//ZvTDO//+VPlrY///w5d/BjP/1OpD/bv/5if/1VP/Srev/5cjy/3L/R//92Gjb/63s/+T/TLrv/+L/MOL/Pu7B7Np61v+ELf+dTCPL/9hy1P8j/f+GI9//I9izcnKc2P+jYf/3YYb/Yf/Blv/hy//9y//5lv/0La//ll7/Lf+MOvX/8v+TR//1R5Hl//L8///o2P+aVOy56uH/2P/+5f33/Xz/VPbc9f/5fP/QsJr/fOT5/6T/if/7sMP/sP/3bj7R///Jo//6o3Xe///8vs3/vv/I/vf/yNb2///hyPvu+v9a/uf/Wv+R/vHK79+M3P/38vf6/UzU//8w/eSe4dzn9t2D2f379/+NMP/k//v/5IPi//PT8v8+/P+t//P/rfr/1u7z+//o1umw5/jx5fD/kfjl97n/o/X/uv+0fOXt+Oen5Or/dZ/o/9q4ev/CkefQp/+6//v37v/Kn6fB5/7W//+0dfHjyv9M/f+f/v/y//+D/vbt3O7/g3qg2un/aO7ewdPg8929g/H/n/Pn09m3erG5kVfE1oG/tsq2fpe8pNLk3GzCxzrK7dS4fS7L9rHDp0XH5lLP48Pb02rU7tHRtGbN4q7W0aHiULLFMeThpPq6feb2zu+wXJPj9fjk6Nq2S9SqK+/CfJnvX4vmOcLBQOirOdP1tOydM+KTwu25l/fVoe25sufyRdHKY+vUlfuNK1rX58fqkOaaJpXl5q3nnEvT7oDdrcPsrviNJ8Llbuibpd2CyJ3UMubkKOvKhf30zfSWL5rhkfThusnw99XxquTzl/bUaufsObP3j5HhsPDxctbtVLTnddb16vbw2ZnJweLt5faNJOfot/jgocf4qO/ON+J2qPfijfB+Ze3r3IPh6L74nHXc4fLISPy7dPrzwem6ZvjhZrjvh/HGney44/3qzv2WSvL62+y0h+y42v328eL1JeTyNf3uRO/nad2C0gAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjdDNEJFQTYzMjEzMTFFNkEyRkM4NUFFOTM5QjJGOTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDIwQzI4MjYzMjIwMTFFNkEyRkM4NUFFOTM5QjJGOTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCN0M0QkVBNDMyMTMxMUU2QTJGQzg1QUU5MzlCMkY5NyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCN0M0QkVBNTMyMTMxMUU2QTJGQzg1QUU5MzlCMkY5NyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAkEAIQALAAAAAAsASwBAAj/AAkJHEiwoMGDCBMqXMiwocOHECNKJNTkwgJCS2rseDGxo8ePIEOKHEmypMmSLypqnLFgx4yTMGPKnEmzpk2QQmboHEiDxs2fQIMKHUp0oQWfRZMqXcq06cGcOmdYdEq1qtWrJDPuOEqhhhCZXq6I9YK1rNmzIFNyEKi1iUw4KuLGNRFIAtq7ePMOpNBkBo0XFNa6lAlBrmEIDvQqXkx1ScoXUC5SRAoTw2HDCOAw3syZ6dGZfcxclpugs+nTNaMOnukl9GgVJsiink2744K/GgF7velAwevawIMzBAzlpZCuHH9KSCDacGLh0KNTfImR73HqQK/0QcAdg/TvwLVq/4Qi8AJ28OjTv90psOVX9fDjx/wrv779kFAC39/Pn+HtjZL1J+CA7fUUIIEIJqjgggw26OCDEEYo4YQUVmjhhRhmOBMIPHTIAwg99LeAHXOUOIcdGnZmhRMntOjiCRFoYF8VWqxg4402upEiYw+86OMJPMg3B45E2rijYhr8+GMH8DVSZJFVHJlXkkr6GCR6Qz5JZJTRnUHFl1/2t2KVPiYBHhpaQincH2Gk4Oabbm7BX49kunildFmmeaNwicDpp5t/7MdDnS5GAF6Neto4R3BU/OkoIvuBQSiMhya6wgfCreHon3LeN2adHoDXhqU6AsfGpn9mwV8PUZDJJHpOav+px4G0aYoqnIYImAQPEfTqqwchojeiFsQWOwca0d36p5TM/qQsrs1GS1MWzwIq7bUwCVCtqth2S1Kjzw7i7bgNvTHGGwlRi6oAkJLrLkKCtCDvGAid0WaqVLyr70HyygtAQoNkIfDAZ+xrcEH9ynvwwhIl3ALDEDvkcMQUKzRxxRgjnHDGHAt0cccYH7AxyBjH6y/JGD/S778oVwwAIy3Q2/LMNNds880456zzzg1mwMANDNTBM7k+KzHA0O7agATS79pgwwBBMD1uBTfAQATQUUsdrQ0/L00IEgxo3WwODASRAQxVK3GD2MwOAMNAGUCdNds7uk13txvIDfXdzG7/cAMSNlytRA58p1jHBhso0R7VhBeOYdk5EJH4FFzP7TiFA4QtEBMVWK345RYGQQTofU8hN+kaXi152pajHiHXDExBSBCcr+36hDeYfoMNjdt+e4Q3EO420H//LmHecO9t/OtvL38hDEg07jyFVCPR+vQPMvE09tx37/33CkoggwwxlG8X+AnqoMMdMbjwQwkuyIZ+fz7gIJsD6rtwx/wCSgC/+zhIQFhcwL/+jc8HA5EBAQuIIPElYH8M7M8RcOC+9z0hgqvSAQJb474jYPA+/qtg/Oonvw/GxwcHHMgRYmDCASmwhQIqHwxnVL4OzvCEvlHAHUpQAhncED4/YN8O/xMwQR/+ED1H6OD5XHDBI6ZnOQogoP2ciMQSEFF8OqAKh9LgKzNRUSQ4MGIRmeKBVv3Ii1/8SAjb9wMEKkUDklJSFNIoEvLF4DlJSUIH6oRGOp4GBHRSEg+C5cc/VgkMwCrkbJIgRysosjZ7eFEE9kDIRy5SA5i0pCY3yclOevKToAylKOvjhhrpI
|
|
|
|
background-size: cover;
|
|
|
|
z-index: 3;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
&:hover::after {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.image {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 120px;
|
|
|
|
object-fit: cover;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
.user {
|
|
|
|
position: relative;
|
|
|
|
z-index: 4;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
.avatar {
|
|
|
|
width: 75px;
|
|
|
|
height: 75px;
|
|
|
|
border-radius: 50%;
|
|
|
|
overflow: hidden;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
object-fit: cover;
|
|
|
|
transition: transform 0.75s;
|
|
|
|
background: var(--background);
|
|
|
|
padding: 5px;
|
|
|
|
&:hover {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.link {
|
|
|
|
color: var(--theme);
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.motto {
|
|
|
|
color: var(--main);
|
|
|
|
text-align: center;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.count {
|
|
|
|
width: 100%;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border-bottom: 1px solid var(--classC);
|
|
|
|
.item {
|
|
|
|
min-width: 0;
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
color: var(--routine);
|
|
|
|
font-size: 12px;
|
|
|
|
&:first-child {
|
|
|
|
border-right: 1px solid var(--classC);
|
|
|
|
}
|
|
|
|
.num {
|
|
|
|
max-width: 70px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 22px;
|
|
|
|
color: var(--main);
|
|
|
|
margin-bottom: 3px;
|
|
|
|
text-shadow: var(--text_shadow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.list {
|
|
|
|
padding-top: 15px;
|
|
|
|
.item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
line-height: 30px;
|
|
|
|
.link {
|
|
|
|
position: relative;
|
|
|
|
color: var(--routine);
|
|
|
|
max-width: 85%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 1px;
|
|
|
|
background: var(--theme);
|
|
|
|
transition: all 0.35s;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
&::after {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
fill: var(--routine);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.timelife {
|
|
|
|
background: var(--background);
|
|
|
|
.item {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
font-size: 12px;
|
|
|
|
color: var(--minor);
|
|
|
|
margin-bottom: 5px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.text {
|
|
|
|
color: var(--theme);
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.progress {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
&-bar {
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
background: var(--classC);
|
|
|
|
width: 0;
|
|
|
|
min-width: 0;
|
|
|
|
flex: 1;
|
|
|
|
margin-right: 5px;
|
|
|
|
&-inner {
|
|
|
|
width: 0;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: width 0.35s;
|
|
|
|
animation: progress 750ms linear infinite;
|
|
|
|
&-0 {
|
|
|
|
background: #bde6ff;
|
|
|
|
background-image: linear-gradient(135deg, #50bfff 25%, transparent 25%, transparent 50%, #50bfff 50%, #50bfff 75%, transparent 75%, transparent 100%);
|
|
|
|
background-size: 30px 30px;
|
|
|
|
}
|
|
|
|
&-1 {
|
|
|
|
background: #ffd980;
|
|
|
|
background-image: linear-gradient(135deg, #f7ba2a 25%, transparent 25%, transparent 50%, #f7ba2a 50%, #f7ba2a 75%, transparent 75%, transparent 100%);
|
|
|
|
background-size: 30px 30px;
|
|
|
|
}
|
|
|
|
&-2 {
|
|
|
|
background: #ffa9a9;
|
|
|
|
background-image: linear-gradient(135deg, #ff4949 25%, transparent 25%, transparent 50%, #ff4949 50%, #ff4949 75%, transparent 75%, transparent 100%);
|
|
|
|
background-size: 30px 30px;
|
|
|
|
}
|
|
|
|
&-3 {
|
|
|
|
background: #67c23a;
|
|
|
|
background-image: linear-gradient(135deg, #4f9e28 25%, transparent 25%, transparent 50%, #4f9e28 50%, #4f9e28 75%, transparent 75%, transparent 100%);
|
|
|
|
background-size: 30px 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-percentage {
|
|
|
|
color: var(--minor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.weather {
|
|
|
|
background: var(--background);
|
|
|
|
.joe_aside__item-contain {
|
|
|
|
min-height: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.hot {
|
|
|
|
background: var(--background);
|
|
|
|
.empty {
|
|
|
|
text-align: center;
|
|
|
|
color: var(--routine);
|
|
|
|
}
|
|
|
|
.item {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
&:nth-child(1) .link .sort {
|
|
|
|
background: #ff183e;
|
|
|
|
}
|
|
|
|
&:nth-child(2) .link .sort {
|
|
|
|
background: #ff5c38;
|
|
|
|
}
|
|
|
|
&:nth-child(3) .link .sort {
|
|
|
|
background: #ffb821;
|
|
|
|
}
|
|
|
|
.link {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
overflow: hidden;
|
|
|
|
&:hover .image {
|
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
|
|
|
.sort {
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
right: -20px;
|
|
|
|
background: #7f7f8c;
|
|
|
|
color: #fff;
|
|
|
|
width: 65px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
font-weight: 500;
|
|
|
|
z-index: 1;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
.image {
|
|
|
|
width: 100%;
|
|
|
|
height: 130px;
|
|
|
|
object-fit: cover;
|
|
|
|
transition: transform 0.35s;
|
|
|
|
}
|
|
|
|
.describe {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
padding: 10px;
|
|
|
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
|
|
|
|
font-size: 12px;
|
|
|
|
color: var(--seat);
|
|
|
|
h6 {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
color: #fff;
|
|
|
|
line-height: 24px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.ranking {
|
|
|
|
background: var(--background);
|
|
|
|
.item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
line-height: 32px;
|
|
|
|
overflow: hidden;
|
|
|
|
&:nth-child(1) .sort {
|
|
|
|
color: #fe2d46;
|
|
|
|
}
|
|
|
|
&:nth-child(2) .sort {
|
|
|
|
color: #f60;
|
|
|
|
}
|
|
|
|
&:nth-child(3) .sort {
|
|
|
|
color: #faa90e;
|
|
|
|
}
|
|
|
|
.sort {
|
|
|
|
color: var(--minor);
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 18px;
|
|
|
|
width: 18px;
|
|
|
|
min-width: 18px;
|
|
|
|
max-width: 18px;
|
|
|
|
}
|
|
|
|
.link {
|
|
|
|
position: relative;
|
|
|
|
color: var(--routine);
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
&::after {
|
|
|
|
position: absolute;
|
|
|
|
content: '';
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 1px;
|
|
|
|
background: var(--theme);
|
|
|
|
transition: width 0.5s;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
&::after {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.error {
|
|
|
|
text-align: center;
|
|
|
|
color: var(--routine);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.newreply {
|
|
|
|
background: var(--background);
|
|
|
|
.empty {
|
|
|
|
text-align: center;
|
|
|
|
color: var(--routine);
|
|
|
|
}
|
|
|
|
.item {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
border-bottom: 1px dashed var(--classC);
|
|
|
|
padding-bottom: 15px;
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
border-bottom-color: transparent;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
.user {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
.avatar {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
min-width: 40px;
|
|
|
|
min-height: 40px;
|
|
|
|
margin-right: 12px;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 1px solid var(--classA);
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
.info {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
.author {
|
|
|
|
color: var(--main);
|
|
|
|
font-weight: 600;
|
|
|
|
max-width: 150px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.date {
|
|
|
|
font-size: 12px;
|
|
|
|
color: var(--minor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.reply {
|
|
|
|
position: relative;
|
|
|
|
background: var(--classD);
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 5px 10px;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-bottom: 6px solid var(--classD);
|
|
|
|
border-left: 6px solid transparent;
|
|
|
|
border-right: 6px solid transparent;
|
|
|
|
position: absolute;
|
|
|
|
left: 15px;
|
|
|
|
bottom: 100%;
|
|
|
|
}
|
|
|
|
.link {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
/*! autoprefixer: off */
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
/* autoprefixer: on */
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
word-break: break-all;
|
|
|
|
color: var(--minor);
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 24px;
|
|
|
|
transition: all 0.35s;
|
|
|
|
max-height: 48px;
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
.owo_image {
|
|
|
|
height: 18px;
|
|
|
|
vertical-align: -5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.advert {
|
|
|
|
display: block;
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
font-size: 12px;
|
|
|
|
background: rgba(0, 0, 0, 0.25);
|
|
|
|
padding: 2px 5px;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: #ebebeb;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.tags {
|
|
|
|
background: var(--background);
|
|
|
|
.empty {
|
|
|
|
text-align: center;
|
|
|
|
color: var(--routine);
|
|
|
|
}
|
|
|
|
}
|
2021-04-14 04:36:24 +00:00
|
|
|
&.flatterer {
|
|
|
|
background: var(--background);
|
|
|
|
.content {
|
|
|
|
border-style: solid;
|
|
|
|
border-color: var(--classC);
|
|
|
|
padding: 15px;
|
|
|
|
line-height: 1.8;
|
|
|
|
background: var(--classD);
|
|
|
|
color: var(--routine);
|
|
|
|
margin-bottom: 15px;
|
|
|
|
mark {
|
|
|
|
background-color: transparent;
|
|
|
|
background-image: linear-gradient(#ffe21d, #ffe21d);
|
|
|
|
background-position: 0 85%;
|
|
|
|
background-size: 100% 25%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
color: var(--routine);
|
|
|
|
}
|
|
|
|
&.type1 {
|
|
|
|
border-bottom-left-radius: 15px 255px;
|
|
|
|
border-bottom-right-radius: 225px 15px;
|
|
|
|
border-top-left-radius: 255px 15px;
|
|
|
|
border-top-right-radius: 15px 225px;
|
|
|
|
}
|
|
|
|
&.type2 {
|
|
|
|
border-bottom-left-radius: 185px 25px;
|
|
|
|
border-bottom-right-radius: 20px 205px;
|
|
|
|
border-top-left-radius: 125px 25px;
|
|
|
|
border-top-right-radius: 10px 205px;
|
|
|
|
}
|
|
|
|
&.type3 {
|
|
|
|
border-bottom-left-radius: 225px 15px;
|
|
|
|
border-bottom-right-radius: 15px 255px;
|
|
|
|
border-top-left-radius: 15px 225px;
|
|
|
|
border-top-right-radius: 255px 15px;
|
|
|
|
}
|
|
|
|
&.type4 {
|
|
|
|
border-bottom-left-radius: 25px 115px;
|
|
|
|
border-bottom-right-radius: 155px 25px;
|
|
|
|
border-top-left-radius: 15px 225px;
|
|
|
|
border-top-right-radius: 25px 150px;
|
|
|
|
}
|
|
|
|
&.type5 {
|
|
|
|
border-bottom-left-radius: 20px 115px;
|
|
|
|
border-bottom-right-radius: 115px 20px;
|
|
|
|
border-top-left-radius: 250px 15px;
|
|
|
|
border-top-right-radius: 25px 80px;
|
|
|
|
}
|
|
|
|
&.type6 {
|
|
|
|
border-bottom-left-radius: 15px 225px;
|
|
|
|
border-bottom-right-radius: 20px 205px;
|
|
|
|
border-top-left-radius: 28px 125px;
|
|
|
|
border-top-right-radius: 100px 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.change {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin: 0 auto;
|
|
|
|
cursor: pointer;
|
|
|
|
border: 2px solid var(--classC);
|
|
|
|
.icon {
|
|
|
|
fill: var(--routine);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 08:45:08 +00:00
|
|
|
}
|
2021-01-20 06:15:32 +00:00
|
|
|
}
|
|
|
|
|
2021-01-21 10:41:21 +00:00
|
|
|
.joe_list {
|
2021-03-31 08:45:08 +00:00
|
|
|
&__item {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
border-bottom: 1px solid var(--classC);
|
|
|
|
padding: 15px 0;
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
.information {
|
|
|
|
.title {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
/*! autoprefixer: off */
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
/* autoprefixer: on */
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
word-break: break-all;
|
|
|
|
color: var(--main);
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 24px;
|
|
|
|
max-height: 48px;
|
|
|
|
transition: color 0.35s;
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
.badge {
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
background-image: -webkit-linear-gradient(0deg, #3ca5f6 0%, #a86af9 100%);
|
|
|
|
color: #fff;
|
|
|
|
font-size: 12px;
|
|
|
|
margin-right: 5px;
|
|
|
|
border-radius: 2px;
|
|
|
|
padding: 0 8px;
|
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.abstract {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
/*! autoprefixer: off */
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
/* autoprefixer: on */
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
color: var(--minor);
|
|
|
|
word-break: break-all;
|
|
|
|
line-height: 22px;
|
|
|
|
max-height: 44px;
|
|
|
|
opacity: 0.85;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.line {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 15px;
|
|
|
|
left: -15px;
|
|
|
|
width: 4px;
|
|
|
|
height: 25px;
|
|
|
|
border-radius: 2px;
|
|
|
|
background: var(--theme);
|
|
|
|
transform: scaleY(0);
|
|
|
|
transition: transform 0.35s;
|
|
|
|
}
|
|
|
|
.meta {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: auto;
|
|
|
|
color: var(--minor);
|
|
|
|
font-size: 13px;
|
|
|
|
.items {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
li {
|
|
|
|
&::after {
|
|
|
|
content: '/';
|
|
|
|
color: var(--seat);
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
&:last-child::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.last {
|
|
|
|
margin-left: auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.icon {
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
.link {
|
|
|
|
color: var(--minor);
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:hover .line {
|
|
|
|
transform: scaleY(1);
|
|
|
|
}
|
|
|
|
&.default {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
&:hover {
|
|
|
|
.thumbnail {
|
|
|
|
img {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
time {
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.thumbnail {
|
|
|
|
flex-shrink: 0;
|
|
|
|
position: relative;
|
|
|
|
width: 210px;
|
|
|
|
height: 140px;
|
|
|
|
margin-right: 15px;
|
|
|
|
overflow: hidden;
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
transition: opacity 0.35s;
|
|
|
|
}
|
|
|
|
time {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 5px;
|
|
|
|
right: 5px;
|
|
|
|
background: var(--theme);
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
padding: 0 8px;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 10px;
|
|
|
|
transition: transform 0.35s;
|
|
|
|
transform: translate3d(120%, 0, 0);
|
|
|
|
}
|
|
|
|
svg {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 5px;
|
|
|
|
left: 5px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
fill: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.information {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.single {
|
|
|
|
&:hover {
|
|
|
|
.thumbnail {
|
|
|
|
img {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
time {
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.information {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.thumbnail {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 280px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
transition: opacity 0.35s;
|
|
|
|
}
|
|
|
|
time {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
background: var(--theme);
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
padding: 0 8px;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 10px;
|
|
|
|
transition: transform 0.35s;
|
|
|
|
transform: translate3d(120%, 0, 0);
|
|
|
|
}
|
|
|
|
svg {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
fill: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.multiple {
|
|
|
|
.information {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.thumbnail {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
grid-template-rows: 180px;
|
|
|
|
gap: 15px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
transition: transform 0.35s, opacity 0.35s;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
&:hover {
|
|
|
|
transform: scale(1.025);
|
|
|
|
opacity: 0.85;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.none {
|
|
|
|
.information {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 140px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__loading {
|
|
|
|
.item {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
padding: 15px 0;
|
|
|
|
border-bottom: 1px solid var(--classC);
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
.thumbnail {
|
|
|
|
flex-shrink: 0;
|
|
|
|
position: relative;
|
|
|
|
width: 210px;
|
|
|
|
height: 140px;
|
|
|
|
margin-right: 15px;
|
|
|
|
background: var(--classD);
|
|
|
|
animation: list_thumbnail_loading 0.5s infinite alternate;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
}
|
|
|
|
.information {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
.title {
|
|
|
|
height: 24px;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
background: var(--classD);
|
|
|
|
animation: list_title_loading 0.75s infinite alternate;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.abstract {
|
|
|
|
p {
|
|
|
|
height: 18px;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
background: var(--classD);
|
|
|
|
margin-bottom: 5px;
|
|
|
|
animation: list_abstract_loading 0.8s infinite alternate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-22 05:03:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.joe_load {
|
2021-03-31 08:45:08 +00:00
|
|
|
margin: 15px auto 0;
|
|
|
|
width: 120px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
background: var(--background);
|
|
|
|
color: var(--routine);
|
|
|
|
transition: transform 0.25s;
|
|
|
|
box-shadow: var(--box-shadow);
|
|
|
|
&:active {
|
|
|
|
transform: scale(0.75);
|
|
|
|
}
|
2021-01-21 10:41:21 +00:00
|
|
|
}
|
|
|
|
|
2021-04-22 14:49:08 +00:00
|
|
|
.joe_checkbox {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 2px;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
border: 2px solid var(--theme);
|
|
|
|
vertical-align: -2px;
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
&:checked {
|
|
|
|
border: none;
|
|
|
|
background: var(--theme);
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
width: 3px;
|
|
|
|
height: 7px;
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 5px;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
border-top: 0;
|
|
|
|
border-left: 0;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_mtitle {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
&__text {
|
|
|
|
position: relative;
|
|
|
|
color: var(--minor);
|
|
|
|
padding: 0 12px;
|
|
|
|
transition: padding 0.35s;
|
|
|
|
&:hover {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
width: 20px;
|
|
|
|
height: 1px;
|
|
|
|
background: var(--theme);
|
|
|
|
}
|
|
|
|
&::before {
|
|
|
|
left: -35px;
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
right: -35px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_abtn {
|
|
|
|
display: inline-block;
|
|
|
|
color: #fff;
|
|
|
|
height: 35px;
|
|
|
|
line-height: 35px;
|
|
|
|
padding: 0 15px;
|
|
|
|
transform-origin: 100% 0;
|
|
|
|
transform: translateZ(0);
|
|
|
|
&:hover {
|
|
|
|
animation-name: wobble-bottom;
|
|
|
|
animation-duration: 1s;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
}
|
|
|
|
&__icon {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: center;
|
|
|
|
.fa {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
[class^='fa-'] {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__content {
|
|
|
|
color: #fff;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
max-width: 200px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_anote {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
color: #fff;
|
|
|
|
height: 35px;
|
|
|
|
line-height: 35px;
|
|
|
|
transform: translateZ(0);
|
|
|
|
transition: transform 0.35s;
|
|
|
|
&:hover {
|
|
|
|
transform: translateY(-3px);
|
|
|
|
}
|
|
|
|
&__icon {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
|
|
|
text-align: center;
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
.fa {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__content {
|
|
|
|
color: #fff;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
padding: 0 12px;
|
|
|
|
max-width: 200px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
&.secondary {
|
|
|
|
background: #34495e;
|
|
|
|
}
|
|
|
|
&.success {
|
|
|
|
background: #27ae60;
|
|
|
|
}
|
|
|
|
&.warning {
|
|
|
|
background: #f39c12;
|
|
|
|
}
|
|
|
|
&.error {
|
|
|
|
background: #e74c3c;
|
|
|
|
}
|
|
|
|
&.info {
|
|
|
|
background: #3498db;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_dotted {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 2px;
|
|
|
|
background-size: 80px;
|
|
|
|
}
|
|
|
|
.joe_hide {
|
|
|
|
display: block;
|
|
|
|
background: repeating-linear-gradient(145deg, var(--classD), var(--classD) 15px, var(--background) 0, var(--background) 25px);
|
|
|
|
padding: 15px 0;
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
user-select: none;
|
|
|
|
line-height: normal;
|
|
|
|
&__button {
|
|
|
|
position: relative;
|
|
|
|
font-style: normal;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_card__default {
|
|
|
|
margin: 0 auto;
|
|
|
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
border: 1px solid var(--classC);
|
|
|
|
background: var(--background);
|
|
|
|
&-title {
|
|
|
|
padding: 8px 12px;
|
|
|
|
border-bottom: 1px solid var(--classC);
|
|
|
|
color: var(--main);
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
&-content {
|
|
|
|
padding: 12px;
|
|
|
|
color: var(--routine);
|
|
|
|
*:last-child {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_message {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
border-left-width: 4px;
|
|
|
|
border-left-style: solid;
|
|
|
|
padding: 8px 15px;
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
&:hover {
|
|
|
|
.joe_message__icon {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__icon {
|
|
|
|
position: absolute;
|
|
|
|
top: -9px;
|
|
|
|
left: -11px;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
border-radius: 50%;
|
|
|
|
transition: transform 0.85s;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
fill: #fff;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 100% 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.success {
|
|
|
|
border-left-color: #2bde3f;
|
|
|
|
background: #2bde3f20;
|
|
|
|
color: #2bde3f;
|
|
|
|
.joe_message__icon {
|
|
|
|
background: #2bde3f;
|
|
|
|
&::before {
|
|
|
|
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MDE1ODgxIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQxMTU3IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik00MTMuMjU1IDY5MS40MzZjMTguNTQ2LTE3LjQ1IDMzLjE4Ni0zMC41NTIgNDcuMDc2LTQ0LjQyNyAxMzMuMDQtMTMyLjgxIDI2Ni4xODItMjY1LjUxMyAzOTguNzI0LTM5OC44MzcgMzIuMDc0LTMyLjI0NCA2NS42NjYtNDguNDUyIDEwNC45OTctMTQuNzUyIDMyLjk4MyAyOC4yNDEgMjguMDQ5IDY3LjQ2NS0xMi45MiAxMDguNTc0LTE1Ny4xNzUgMTU3LjcxLTMxNC41ODcgMzE1LjE4NC00NzIuMjkyIDQ3Mi4zOC00OS4zODkgNDkuMjI1LTc2LjMwOCA0OS41NDYtMTI0LjcxNiAxLjYwNy04NS41OS04NC43NjUtMTcwLjEzNS0xNzAuNTc5LTI1NS44LTI1NS4yNTctMzIuMjkyLTMxLjkyMy00OC42OC02NS41MTYtMTQuOTk3LTEwNC45NzYgMjguMTctMzIuOTk1IDY3LjU1Ny0yOC4xNTUgMTA4LjU1OCAxMi42NzUgNzMuNDI3IDczLjE2IDE0Ni4wNzkgMTQ3LjA5IDIyMS4zNyAyMjMuMDEzeiIgcC1pZD0iNDExNTgiIGZpbGw9IiNmZmZmZmYiPjwvcGF0aD48L3N2Zz4=);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.info {
|
|
|
|
border-left-color: #1d72f3;
|
|
|
|
background: #1d72f320;
|
|
|
|
color: #1d72f3;
|
|
|
|
.joe_message__icon {
|
|
|
|
background: #1d72f3;
|
|
|
|
&::before {
|
|
|
|
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MzM4MjIxIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjYxNjg0IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik03NjcuOTczOTc1IDExNi4zNDYwODZjMCA2NC4yNTI3MzQtNDEuNjgzMjE0IDExNi4zODg3NS05My4wOTM5MzUgMTE2LjM4ODc1UzU4MS43ODYxMDYgMTgwLjU5ODgyIDU4MS43ODYxMDYgMTE2LjM0NjA4NkM1ODEuNzg2MTA2IDUyLjA5MzM1MiA2MjMuNDY5MzIgMCA2NzQuODgwMDQgMFM3NjcuOTczOTc1IDUyLjA5MzM1MiA3NjcuOTczOTc1IDExNi4zNDYwODZ6TTI1NiA1MDQuMjk0MzY1czcwLjgyMzA2Ni0yODQuNzg1NTIzIDI4Ni43NDgwOS0yNzEuMDQ3NTU1YzIxNS45MjUwMjQgMTMuNjk1MzA0IDY3LjIzOTI0OSAyNjEuNDQ4MDQzLTEzLjI2ODY1OSA1MDEuNjQ5MTY2LTgwLjUwNzkwOCAyNDAuMjAxMTIzIDEwMC4yNjE1NyA3MS40MjAzNjkgMTQ1LjQwMDYwOS03LjU1MTYxNiAwIDAtOTMuMTM2NTk5IDQwNi43NjMzMjMtMzY3LjM0MTMyNyAyNjcuNjc3MDYtMTI4LjU0ODEzMi02NS4yMzQwMTcgMzIuMjU0MzYtMzk4LjA1OTc2NSAxMDMuMTIwMDkyLTU0NS41OTM1OTlDNDgxLjU2NzIgMzAxLjgwODY1OCAzMzYuNjM1OTAxIDM4Ny42MDY5NjMgMjU2IDUwNC4yNTE3MDF6IiBmaWxsPSIjZmZmZmZmIiBwLWlkPSI2MTY4NSI+PC9wYXRoPjwvc3ZnPg==);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.warning {
|
|
|
|
border-left-color: #ffc007;
|
|
|
|
background: #ffc00720;
|
|
|
|
color: #ffc007;
|
|
|
|
.joe_message__icon {
|
|
|
|
background: #ffc007;
|
|
|
|
&::before {
|
|
|
|
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MTI5NTE1IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQ3NDkyIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik00NzkuODE3MTQzIDY2NS42YzEwLjI0IDMwLjcyIDMwLjcyIDUxLjIgNjEuNDQgNTEuMnM1MS4yLTIwLjQ4IDYxLjQ0LTUxLjJsNDAuOTYtNTYzLjJDNjQzLjY1NzE0MyA0MC45NiA1OTIuNDU3MTQzIDAgNTQxLjI1NzE0MyAwIDQ3OS44MTcxNDMgMCA0MzguODU3MTQzIDUxLjIgNDM4Ljg1NzE0MyAxMTIuNjRsNDAuOTYgNTUyLjk2eiBtNjEuNDQgMTUzLjZjLTYxLjQ0IDAtMTAyLjQgNDAuOTYtMTAyLjQgMTAyLjQgMCA2MS40NCA0MC45NiAxMDIuNCAxMDIuNCAxMDIuNCA2MS40NCAwIDEwMi40LTQwLjk2IDEwMi40LTEwMi40IDAtNjEuNDQtNDAuOTYtMTAyLjQtMTAyLjQtMTAyLjR6IiBwLWlkPSI0NzQ5MyIgZmlsbD0iI2ZmZmZmZiI+PC9wYXRoPjwvc3ZnPg==);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.error {
|
|
|
|
border-left-color: #f56c6c;
|
|
|
|
background: #f56c6c20;
|
|
|
|
color: #f56c6c;
|
|
|
|
.joe_message__icon {
|
|
|
|
background: #f56c6c;
|
|
|
|
&::before {
|
|
|
|
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MjAyNDk4IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQ4OTE1IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0xOTMuOCA4MzAuMmMtMTkuNC0xOS40LTE5LjQtNTEuMyAwLTcwLjdsNTY1LjctNTY1LjdjMTkuNC0xOS40IDUxLjMtMTkuNCA3MC43IDAgMTkuNCAxOS40IDE5LjQgNTEuMyAwIDcwLjdMMjY0LjUgODMwLjJjLTE5LjQgMTkuNC01MS4zIDE5LjQtNzAuNyAweiIgZmlsbD0iI2ZmZmZmZiIgcC1pZD0iNDg5MTYiPjwvcGF0aD48cGF0aCBkPSJNODMwLjIgODMwLjJjLTE5LjQgMTkuNC01MS4zIDE5LjQtNzAuNyAwTDE5My44IDI2NC41Yy0xOS40LTE5LjQtMTkuNC01MS4zIDAtNzAuNyAxOS40LTE5LjQgNTEuMy0xOS40IDcwLjcgMGw1NjUuNyA1NjUuN2MxOS40IDE5LjQgMTkuNCA1MS4zIDAgNzAuN3oiIGZpbGw9IiNmZmZmZmYiIHAtaWQ9IjQ4OTE3Ij48L3BhdGg+PC9zdmc+);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__content {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_progress {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
&__strip {
|
|
|
|
height: 12px;
|
|
|
|
border-radius: 6px;
|
|
|
|
overflow: hidden;
|
|
|
|
background: var(--classC);
|
|
|
|
min-width: 0;
|
|
|
|
flex: 1;
|
|
|
|
margin-right: 10px;
|
|
|
|
&-percent {
|
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 6px;
|
|
|
|
transition: width 0.35s;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 6px;
|
|
|
|
animation: progress-active 3s ease-in-out infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__percentage {
|
|
|
|
color: var(--minor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_callout {
|
|
|
|
padding: 12px;
|
|
|
|
border: 1px solid var(--classB);
|
|
|
|
border-left-width: 4px;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
color: var(--routine);
|
|
|
|
*:last-child {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_card__list {
|
|
|
|
border: 1px solid var(--classC);
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
overflow: hidden;
|
|
|
|
&-item {
|
2021-04-23 02:40:14 +00:00
|
|
|
padding: 12px;
|
2021-04-22 14:49:08 +00:00
|
|
|
border-bottom: 1px solid var(--classC);
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
*:last-child {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_timeline {
|
|
|
|
&__item {
|
|
|
|
position: relative;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
&-tail {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 6px;
|
|
|
|
height: 100%;
|
|
|
|
border-left: 1px solid var(--classC);
|
|
|
|
}
|
|
|
|
&-circle {
|
|
|
|
position: absolute;
|
|
|
|
width: 13px;
|
|
|
|
height: 13px;
|
|
|
|
background-color: var(--background);
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 1px solid #19be6b;
|
|
|
|
}
|
|
|
|
&-content {
|
2021-04-23 01:34:22 +00:00
|
|
|
padding-left: 24px;
|
2021-04-22 14:49:08 +00:00
|
|
|
position: relative;
|
|
|
|
top: -3px;
|
|
|
|
*:last-child {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:last-child {
|
2021-04-23 01:34:22 +00:00
|
|
|
padding-bottom: 0;
|
2021-04-22 14:49:08 +00:00
|
|
|
.joe_timeline__item-tail {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_tabs {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
background: var(--background);
|
|
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
|
|
border: 1px solid var(--classC);
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
&__head {
|
|
|
|
width: 100%;
|
|
|
|
overflow-x: auto;
|
|
|
|
overflow-y: hidden;
|
|
|
|
display: flex;
|
|
|
|
background: var(--classD);
|
|
|
|
&-item {
|
|
|
|
position: relative;
|
|
|
|
padding: 0 15px;
|
|
|
|
line-height: 40px;
|
|
|
|
height: 40px;
|
|
|
|
color: var(--minor);
|
|
|
|
cursor: pointer;
|
|
|
|
transition: color 0.5s;
|
|
|
|
white-space: nowrap;
|
|
|
|
font-size: 14px;
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
background: var(--theme);
|
|
|
|
bottom: 0;
|
|
|
|
left: 15px;
|
|
|
|
right: 15px;
|
|
|
|
height: 2px;
|
|
|
|
opacity: 0;
|
|
|
|
border-radius: 2px;
|
|
|
|
transform: scaleX(0.5);
|
|
|
|
transition: opacity 0.25s, transform 0.25s;
|
|
|
|
}
|
|
|
|
&.active {
|
|
|
|
color: var(--theme);
|
|
|
|
&::after {
|
|
|
|
opacity: 1;
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__body {
|
|
|
|
&-item {
|
|
|
|
padding: 15px;
|
|
|
|
*:last-child {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_vplayer {
|
|
|
|
width: 100%;
|
|
|
|
height: 500px;
|
|
|
|
}
|
2021-04-23 02:40:14 +00:00
|
|
|
.joe_card__describe {
|
|
|
|
position: relative;
|
|
|
|
border: 1px dashed var(--classB);
|
|
|
|
&-title {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 8px;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
background: var(--background);
|
|
|
|
padding: 0 5px;
|
|
|
|
color: var(--main);
|
|
|
|
font-weight: 500;
|
2021-04-23 02:51:58 +00:00
|
|
|
max-width: 200px;
|
2021-04-23 02:40:14 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
&-content {
|
|
|
|
color: var(--routine);
|
|
|
|
padding: 18px 15px 15px;
|
|
|
|
*:last-child {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-04-22 14:49:08 +00:00
|
|
|
|
2021-01-22 10:37:16 +00:00
|
|
|
.joe_detail {
|
2021-03-31 08:45:08 +00:00
|
|
|
background: var(--background);
|
|
|
|
border-radius: var(--radius-wrap);
|
|
|
|
padding: 15px;
|
|
|
|
box-shadow: var(--box-shadow);
|
|
|
|
margin-bottom: 15px;
|
|
|
|
&__category {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
.item {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 3px 8px;
|
|
|
|
margin-right: 5px;
|
|
|
|
border-radius: 2px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 120px;
|
|
|
|
transition: transform 0.35s, opacity 0.35s;
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.85;
|
|
|
|
transform: translate3d(0, -3px, 0);
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
&-0 {
|
|
|
|
background: #0396ff;
|
|
|
|
}
|
|
|
|
&-1 {
|
|
|
|
background: #ea5455;
|
|
|
|
}
|
|
|
|
&-2 {
|
|
|
|
background: #7367f0;
|
|
|
|
}
|
|
|
|
&-3 {
|
|
|
|
background: #28c76f;
|
|
|
|
}
|
|
|
|
&-4 {
|
|
|
|
background: #9f44d3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.edit {
|
|
|
|
color: var(--minor);
|
|
|
|
margin-left: auto;
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__title {
|
|
|
|
font-size: 24px;
|
|
|
|
color: var(--main);
|
|
|
|
text-shadow: var(--text-shadow);
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
&__count {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
border-bottom: 1px solid var(--classC);
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: -1.5px;
|
|
|
|
left: 0;
|
|
|
|
width: 80px;
|
|
|
|
height: 3px;
|
|
|
|
border-radius: 1.5px;
|
|
|
|
background: var(--theme);
|
|
|
|
}
|
|
|
|
&-information {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.avatar {
|
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-right: 10px;
|
|
|
|
border: 1px solid var(--classA);
|
|
|
|
padding: 3px;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.meta {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 35px;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-size: 12px;
|
|
|
|
.author {
|
|
|
|
.link {
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--theme);
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
color: var(--minor);
|
|
|
|
line-height: 16px;
|
|
|
|
.line {
|
|
|
|
color: var(--seat);
|
|
|
|
margin: 0 7px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-created {
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 42px;
|
|
|
|
color: var(--routine);
|
|
|
|
user-select: none;
|
|
|
|
text-shadow: var(--text-shadow);
|
|
|
|
font-family: consolas;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__overdue {
|
|
|
|
padding-top: 15px;
|
|
|
|
&-wrapper {
|
|
|
|
background: #fffcef;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
padding: 15px;
|
|
|
|
color: #db7c22;
|
|
|
|
border: 1px solid #ffbb76;
|
2021-03-07 06:28:02 +00:00
|
|
|
animation: overdue 1.5s ease-in-out;
|
2021-03-02 12:31:37 +00:00
|
|
|
.title {
|
2021-03-07 06:28:02 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
2021-03-02 12:31:37 +00:00
|
|
|
.icon {
|
|
|
|
width: 20px;
|
2021-03-07 06:28:02 +00:00
|
|
|
height: 20px;
|
2021-03-02 12:31:37 +00:00
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.content {
|
2021-03-07 06:28:02 +00:00
|
|
|
padding-left: 28px;
|
2021-03-02 12:31:37 +00:00
|
|
|
}
|
2021-03-07 06:28:02 +00:00
|
|
|
&:hover {
|
|
|
|
clip-path: circle(75%);
|
|
|
|
}
|
2021-03-31 08:45:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&__article {
|
|
|
|
padding-top: 15px;
|
|
|
|
font-size: 15px;
|
|
|
|
word-break: break-all;
|
|
|
|
color: var(--routine);
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
color: var(--main);
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
padding: 0 15px;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 8.5px;
|
|
|
|
left: 0;
|
|
|
|
height: 7px;
|
|
|
|
width: 7px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
padding: 0 15px;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 10%;
|
|
|
|
bottom: 10%;
|
|
|
|
left: 0;
|
|
|
|
width: 4px;
|
|
|
|
border-radius: 2px;
|
|
|
|
background: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
padding: 0 15px 0 20px;
|
|
|
|
&::before {
|
|
|
|
content: '#';
|
|
|
|
color: var(--theme);
|
|
|
|
font-weight: 700;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
&::before {
|
|
|
|
content: '「';
|
|
|
|
color: var(--theme);
|
|
|
|
font-weight: 600;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
content: '」';
|
|
|
|
color: var(--theme);
|
|
|
|
font-weight: 600;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h5 {
|
|
|
|
padding: 0 15px 0 28px;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 0;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAC8klEQVRYR+3WP2gTURwH8O/vKnVRRHKXP52cBO3g4p/BqYNIhy4muajUQRBFKjQV1En6ZxJBcmlRCoJDRe3FDiJVwamLS3FwqbgIgss1l2ZQF5XeT3I1Z3NJ7u5dLlAwN9699/t97vfe7/EIO/yhHe5DD9jpCv3fFVTu856+Xzi62Y/35hj9CFPNrlUwWeRJAJfBGADwBcBNI0/PRZFdAdo4xlQLjCqKjBzogat7hZCRAgPghJGBgbFnxglAOvS7b/fLb+q+qnv5BHBCyEBAWTdnANy2IxOtWSC1qsY+1jOFwAVG+gIVvXyHQbcaKuZCxmf5iMQogXFQtEsBeO5JT6BcMu+Bcb1lUhcyqfExACUAB6JEtgUqi+U5JrrmmcyFHCjwSYtQO+tSUSFbAmXdnAdwJVASdyWLPAS2kbFA8xsHNS13EzCmlx8R6KJQcBcypfFpho3cKxRna3ADsgEo6+ZjAKMhgjZ1d2KWR2gTSyD0h4jnIB2gXDIXwciFCPZvSnMl0wwshYrJGDImaMUGKovlLBPVOrDjh8APzFx8zDkjNa7FzYoGZsKT9XEarQOHmei1aJA246cqOWW6/i2l8VMGzoWIPW/k6eq2Ja6UwCz8pw2JGZ8sS8pUz8fWau/jGp+SgLchcGBgZD1Py41NUuoI+ZloV8ZU93+ogZKzfBiWfXAPCgMJU8Y42avQdMzI4ZBfmSizocqrUeJaAmsvBZGGBCtTziXeRY1rCxRAViEhXckqK93AeQJ9kYTvlmVlqmcTdhNEtefc+9X3utVmuX+CkK6oyqtu4nwrWP8bF5IZdGYjJ79wDuMCz4D+XmhFWnZbt7ab5ltBB6mbkyAaBPFCJassuwMmNb4L4EZgXwBc4AoGTZrUeA6A9x1yK6tzzvnFDlxBv0D176kCP2TCpbbjBXCRV9DZk0VeAONCE1IQ1zWg3dlF1sFQHWQIXFeBNrLAw5BwHBZWjQl6E3SbbB8X+R4Mg/Ca0wN2WtFeBTut4B84mFI4VpekyAAAAABJRU5ErkJggg==');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h6 {
|
|
|
|
padding: 0 15px 0 28px;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 0;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAEI0lEQVRYR+3Xb2wTZRwH8G/vL22RPy5GW8fK6rJpGeFFY9RO3TRRE1HfmEAammEyjZmOSEg1RrPZaTD6xjhU/Ndlf0CZgwmD+qcgZBRIETeqY0Vcnc7pGonhRY2l3m2t5upqjq693l2vcy+8N81zz/NcPvf75fd7rjos8ku3yH34HyjK0PqlDLPzD56vMNL0VHxmpgXAoUIZXKgI3sMSpK+cNTAbylaj/9IkprnLM3+mkg8XQi4EsJ4lSL+ZNbAfVd+JG/XLcSERg3M8IAtZauBtDEkeNdN6fX9NfRqXueQiSwm00wQRMDMGw94snBJkqYBrSYIIXs/ojftqGq6IXHZRFIpkKYC2JSw9SJE663W0nthlqcMawwrJYpVCag1M48pNy1YNvLWRffGNIYSCv6Cnog7rjCtVIbUEXoG7qeqaNMj51F58dWoKPZY62JeWyUJG+ctcIplcIizWCpgTl9EIyODJn9BtceDWq/6B57tO/H4R688fFaZ7AWzWAiiJEyMDx39Ed6UDdyy7Ni/w1ekxbP95VJi/F8CRYoGycGLksaEJdFU6cPdy0zxkR/RbtE6FhPvHATQUm2JFODHSfyyCLmsd7lth/hf53q/jcE8OC+NTAG7PTKiNoCqcGPnpF+PotDrwwNXl+OC3H9A8cVqYPgPgFnFo1QCLwomRg4cvoPMGBzZHTgq3zwKwZ+ddKVATXAZhf+gdnPvuojAUqmJdrspRAtQU93pXEM+8clgwhQHU5itruUBNcTt6TsP9sl8weQC0S/VFOUBNcW/2folt2z+XhZPTZh6kSKJ79aqVRuFszRxfUm8sNbdz9xlsfekz2bhCQBvDMMM8z+ubN92Mjrb71brS+97dM4wtnk8U4SSBBEGErVarzeVywePxoHVLA1pb6lUh3+8bwZMv+BTjpIAVACa9Xq+uqakJ7e3tqpGd/WfR3Jr+81awIJS0mY0A+sLhMGw2W3qfGmTXvhAef/6gapxUBDuqqqoejUQiBvFbKUH2DHyNx54bLAqXF0jT9HBjY6Pd6/XOi7oc5K7936Dp2QNF4/IBrTqdLuLxeIi2tracRSGF/PDgKB55er8muHzATQB2m81m+P1+1NbmPoVyIfsOnUOj+2PNcPmAO1iWbeE4TmexWODz+WQhayrL4No2oCkuJ5Bl2VGO49ZmcisXObdeVSuRaq7ZZ3G10KBTqRQl3pQPGY1GEQgE4HQ6heVDAO5S1cklNmUDXQRB9KZSqXkfESaTCW63G7FYDKFQKDEyMoJoNKqfe/bbAJ7QGpcrxa8xDLOV5/k0kGXZv2ZnZ5FMJtNjmqYvURR1IpFInAcwAeD7ud/pUuDmAY1G41g8Hl9DkmScoqggx3FHAIyJMMlSQfI9V5zKagDC93dsoRFKimQx2dIWOV/U/yn6bx0WyDj8vgLOAAAAAElFTkSuQmCC');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
hr {
|
|
|
|
border: none;
|
|
|
|
height: 1px;
|
|
|
|
background-color: var(--classB);
|
|
|
|
margin-bottom: 18px;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
line-height: 26px;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
}
|
|
|
|
blockquote {
|
|
|
|
line-height: 26px;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
background: #ecf8ff;
|
|
|
|
border-left: 5px solid #50bfff;
|
|
|
|
color: #50bfff;
|
|
|
|
padding: 8px 15px;
|
|
|
|
border-radius: 0 var(--radius-inner) var(--radius-inner) 0;
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
2021-04-22 14:49:08 +00:00
|
|
|
a:not(.joe_anote):not(.joe_abtn) {
|
2021-03-31 08:45:08 +00:00
|
|
|
display: inline-block;
|
|
|
|
line-height: 26px;
|
|
|
|
color: var(--theme);
|
|
|
|
position: relative;
|
|
|
|
&:hover::after {
|
|
|
|
opacity: 1;
|
|
|
|
transform: scaleX(1);
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
|
|
|
bottom: -1px;
|
|
|
|
left: 0;
|
|
|
|
background: var(--theme);
|
|
|
|
transform: scaleX(0.25);
|
|
|
|
opacity: 0;
|
|
|
|
transition: transform 0.35s, opacity 0.35s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p code {
|
|
|
|
display: inline-block;
|
|
|
|
min-height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
font-size: 12px;
|
|
|
|
background: #fdf6ec;
|
|
|
|
padding: 0 8px;
|
|
|
|
color: #e6a23c;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
pre[class*='language-'] {
|
|
|
|
position: relative;
|
|
|
|
margin: 0 0 18px;
|
|
|
|
padding: 30px 0 0;
|
|
|
|
font-size: 14px;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
overflow: hidden;
|
|
|
|
code[class*='language-'] {
|
|
|
|
display: block;
|
|
|
|
overflow: auto;
|
|
|
|
padding: 0 15px 12px;
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 30px;
|
|
|
|
background: #2d2d2d;
|
|
|
|
border-radius: var(--radius-inner) var(--radius-inner) 0 0;
|
|
|
|
}
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 9px;
|
|
|
|
left: 15px;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: #fc625d;
|
|
|
|
box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
.copy {
|
|
|
|
position: absolute;
|
|
|
|
top: 9px;
|
|
|
|
right: 15px;
|
|
|
|
z-index: 5;
|
|
|
|
color: #909399;
|
|
|
|
transition: color 0.35s;
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
&:hover {
|
|
|
|
color: #c0c4cc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
img:not(.owo_image) {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
transition: transform 0.35s, box-shadow 0.35s;
|
|
|
|
cursor: zoom-in;
|
|
|
|
margin: 0 auto;
|
|
|
|
&:hover {
|
|
|
|
transform: translateY(-5px);
|
|
|
|
box-shadow: 0 34px 20px -24px rgba(136, 161, 206, 0.3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.owo_image {
|
|
|
|
max-height: 26px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
ol,
|
|
|
|
ul {
|
|
|
|
margin-bottom: 18px;
|
|
|
|
padding-left: 36px;
|
|
|
|
li {
|
|
|
|
line-height: 26px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ol li {
|
|
|
|
list-style: decimal;
|
|
|
|
}
|
|
|
|
ul li {
|
|
|
|
list-style: disc;
|
|
|
|
}
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
color: var(--minor);
|
|
|
|
margin-bottom: 18px;
|
|
|
|
font-size: 13px;
|
|
|
|
border-top: 1px solid var(--classC);
|
|
|
|
border-left: 1px solid var(--classC);
|
|
|
|
td,
|
|
|
|
th {
|
|
|
|
padding: 8px;
|
|
|
|
border-bottom: 1px solid var(--classC);
|
|
|
|
border-right: 1px solid var(--classC);
|
|
|
|
}
|
|
|
|
thead {
|
|
|
|
th {
|
|
|
|
font-weight: 500;
|
|
|
|
background: var(--classC);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tbody {
|
|
|
|
tr {
|
|
|
|
transition: background 0.35s;
|
|
|
|
&:hover {
|
|
|
|
background: var(--classD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-video {
|
|
|
|
margin-bottom: 18px;
|
|
|
|
.play,
|
|
|
|
.episodes {
|
|
|
|
position: relative;
|
|
|
|
background: var(--classD);
|
|
|
|
padding: 60px 15px 15px;
|
|
|
|
.title {
|
|
|
|
position: absolute;
|
|
|
|
top: 15px;
|
|
|
|
left: -10px;
|
|
|
|
background: var(--theme);
|
|
|
|
color: #fff;
|
|
|
|
font-weight: 500;
|
|
|
|
box-shadow: 2px 5px 10px rgba(49, 58, 70, 0.15);
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
padding: 0 12px;
|
|
|
|
border-radius: 2px 2px 2px 0;
|
|
|
|
user-select: none;
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: -10px;
|
|
|
|
left: -10px;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 10px;
|
|
|
|
border-color: var(--theme) transparent transparent;
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.box {
|
|
|
|
border-top: 1px solid var(--classB);
|
|
|
|
padding-top: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.play {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
.box {
|
|
|
|
iframe {
|
|
|
|
background: #000;
|
|
|
|
width: 100%;
|
|
|
|
height: 520px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.episodes {
|
|
|
|
.box {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(6, 1fr);
|
|
|
|
gap: 15px;
|
|
|
|
.item {
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
border-radius: 15px;
|
|
|
|
background: var(--background);
|
|
|
|
color: var(--routine);
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
transition: transform 0.35s, box-shadow 0.35s, background 0.35s, color 0.35s;
|
|
|
|
padding: 0 10px;
|
|
|
|
&.active {
|
|
|
|
transform: translateY(-2px);
|
|
|
|
color: #fff;
|
|
|
|
background: var(--theme);
|
|
|
|
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
transform: translateY(-2px);
|
|
|
|
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-19 08:00:14 +00:00
|
|
|
&-protected {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
background: repeating-linear-gradient(145deg, var(--classB), var(--classB) 15px, var(--background) 0, var(--background) 30px);
|
|
|
|
padding: 20px 0;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
.contain {
|
|
|
|
position: relative;
|
|
|
|
box-shadow: var(--box-shadow);
|
|
|
|
border-radius: 20px;
|
|
|
|
overflow: hidden;
|
|
|
|
.icon {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
left: 15px;
|
|
|
|
}
|
|
|
|
.password {
|
|
|
|
width: 250px;
|
|
|
|
height: 40px;
|
|
|
|
border: none;
|
|
|
|
color: var(--routine);
|
|
|
|
padding-left: 50px;
|
|
|
|
background: var(--background);
|
|
|
|
}
|
|
|
|
.submit {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
right: 15px;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
color: var(--main);
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 08:45:08 +00:00
|
|
|
}
|
|
|
|
&__agree {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
.agree {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
|
|
|
color: var(--minor);
|
|
|
|
user-select: none;
|
|
|
|
.icon {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: #f56c6c;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
&.active {
|
|
|
|
animation: box_shadow 1s;
|
|
|
|
box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
|
|
|
|
}
|
|
|
|
svg {
|
|
|
|
position: absolute;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
transform: scale(0);
|
|
|
|
opacity: 0;
|
|
|
|
transition: transform 0.85s, opacity 0.85s;
|
|
|
|
&.active {
|
|
|
|
transform: scale(1);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__copyright {
|
|
|
|
padding-top: 15px;
|
|
|
|
border-top: 1px solid var(--classC);
|
|
|
|
.content {
|
|
|
|
background: var(--classD);
|
|
|
|
padding: 15px;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
.item {
|
|
|
|
color: var(--minor);
|
|
|
|
margin-bottom: 5px;
|
|
|
|
word-break: break-all;
|
|
|
|
line-height: 22px;
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
margin-right: 3px;
|
|
|
|
vertical-align: -4px;
|
|
|
|
}
|
|
|
|
.link {
|
|
|
|
color: var(--minor);
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-02 06:38:43 +00:00
|
|
|
&__related {
|
|
|
|
padding-top: 15px;
|
|
|
|
&-title {
|
|
|
|
position: relative;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--main);
|
|
|
|
padding-left: 15px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 4px;
|
|
|
|
border-radius: 2px;
|
|
|
|
background: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-content {
|
|
|
|
display: grid;
|
|
|
|
gap: 15px;
|
|
|
|
grid-template-columns: repeat(4, 1fr);
|
|
|
|
.item {
|
|
|
|
overflow: hidden;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
transition: transform 0.25s, box-shadow 0.25s;
|
|
|
|
&:hover {
|
|
|
|
transform: translateY(-5px);
|
|
|
|
box-shadow: 0 34px 20px -24px rgba(136, 161, 206, 0.3);
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 120px;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
h6 {
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
background: var(--classD);
|
|
|
|
text-align: center;
|
|
|
|
font-size: 13px;
|
|
|
|
color: var(--minor);
|
|
|
|
padding: 0 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 08:45:08 +00:00
|
|
|
&__friends {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
gap: 15px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
&-item {
|
|
|
|
.contain {
|
|
|
|
display: block;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 15px;
|
|
|
|
color: #fff;
|
|
|
|
word-break: break-all;
|
|
|
|
transition: transform 0.35s, box-shadow 0.35s;
|
|
|
|
&:hover {
|
|
|
|
transform: translateY(-5px) scale(1.025);
|
|
|
|
box-shadow: 0 34px 20px -24px rgba(136, 161, 206, 0.3);
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
position: relative;
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: -5px;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.content {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 15px;
|
|
|
|
.desc {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
.avatar {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
min-width: 40px;
|
|
|
|
min-height: 40px;
|
|
|
|
border-radius: 50%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__leaving {
|
|
|
|
padding-top: 15px;
|
|
|
|
&-none {
|
|
|
|
padding: 15px 0;
|
|
|
|
text-align: center;
|
|
|
|
user-select: none;
|
|
|
|
color: var(--minor);
|
|
|
|
}
|
|
|
|
&-list {
|
|
|
|
position: relative;
|
|
|
|
height: 500px;
|
|
|
|
.item {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
width: 200px;
|
|
|
|
overflow: hidden;
|
|
|
|
box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
|
|
|
|
user-select: none;
|
|
|
|
opacity: 0.88;
|
|
|
|
.user {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0 10px;
|
|
|
|
color: rgba(255, 255, 255, 1);
|
|
|
|
border-bottom: 1px dashed rgba(255, 255, 255, 0.85);
|
|
|
|
height: 40px;
|
|
|
|
cursor: move;
|
|
|
|
.avatar {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
.nickname {
|
|
|
|
min-width: 0;
|
|
|
|
flex: 1;
|
|
|
|
margin: 0 5px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
a {
|
|
|
|
color: rgba(255, 255, 255, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.date {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.wrapper {
|
|
|
|
padding: 10px;
|
|
|
|
.content {
|
|
|
|
height: 140px;
|
|
|
|
overflow-y: auto;
|
|
|
|
word-break: break-all;
|
|
|
|
line-height: 24px;
|
|
|
|
color: #fff;
|
|
|
|
.draw_image {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
.owo_image {
|
|
|
|
max-height: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-23 15:32:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.joe_footer {
|
2021-03-31 08:45:08 +00:00
|
|
|
border-top: 1px solid var(--classB);
|
|
|
|
color: var(--minor);
|
|
|
|
.joe_container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
min-height: 65px;
|
|
|
|
.run {
|
|
|
|
margin: 0 auto 0 10px;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: var(--minor);
|
|
|
|
transition: all 0.35s;
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-23 15:32:27 +00:00
|
|
|
}
|
|
|
|
|
2021-01-25 10:36:43 +00:00
|
|
|
.joe_pagination {
|
2021-03-31 08:45:08 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-end;
|
|
|
|
padding-top: 15px;
|
|
|
|
li {
|
|
|
|
margin-left: 5px;
|
|
|
|
&.active a {
|
|
|
|
background: var(--theme);
|
|
|
|
color: #fff;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 32px;
|
|
|
|
color: var(--main);
|
|
|
|
padding: 0 15px;
|
|
|
|
background: var(--background);
|
|
|
|
border-radius: 2px;
|
|
|
|
transition: background 0.35s, color 0.35s;
|
|
|
|
user-select: none;
|
|
|
|
&:hover {
|
|
|
|
background: var(--theme);
|
|
|
|
color: #fff;
|
|
|
|
.icon {
|
|
|
|
fill: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
fill: var(--routine);
|
|
|
|
transition: fill 0.35s;
|
|
|
|
&-next {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
|
2021-01-23 15:32:27 +00:00
|
|
|
.joe_action {
|
2021-03-31 08:45:08 +00:00
|
|
|
position: fixed;
|
|
|
|
bottom: 90px;
|
|
|
|
right: 30px;
|
|
|
|
z-index: 333;
|
|
|
|
&_item {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
background: var(--background);
|
|
|
|
border-radius: 50%;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-top: 15px;
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 5px 20px rgba(0, 0, 0, 0.2);
|
|
|
|
svg {
|
|
|
|
position: absolute;
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
fill: var(--theme);
|
|
|
|
}
|
|
|
|
&.scroll {
|
|
|
|
visibility: hidden;
|
|
|
|
transform: scale(0);
|
|
|
|
transition: visibility 0.35s, transform 0.35s;
|
|
|
|
&.active {
|
|
|
|
visibility: visible;
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.mode {
|
|
|
|
svg {
|
|
|
|
transform: scale(0);
|
|
|
|
opacity: 0;
|
|
|
|
transition: transform 0.85s, opacity 0.85s;
|
|
|
|
&.active {
|
|
|
|
transform: scale(1);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-26 06:19:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.joe_comment {
|
2021-03-31 08:45:08 +00:00
|
|
|
background: var(--background);
|
|
|
|
border-radius: var(--radius-wrap);
|
|
|
|
box-shadow: var(--box-shadow);
|
|
|
|
padding: 15px;
|
|
|
|
&__title {
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 24px;
|
|
|
|
color: var(--main);
|
|
|
|
text-shadow: var(--text-shadow);
|
|
|
|
border-bottom: 1px solid var(--classC);
|
|
|
|
margin-bottom: 15px;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
}
|
|
|
|
&__close {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
color: var(--routine);
|
|
|
|
&-icon {
|
|
|
|
fill: var(--routine);
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__respond {
|
|
|
|
&-type {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-end;
|
|
|
|
.item {
|
|
|
|
background: var(--classD);
|
|
|
|
padding: 0 15px;
|
|
|
|
height: 32px;
|
|
|
|
color: var(--main);
|
|
|
|
border: none;
|
|
|
|
transition: color 0.35s, background 0.35s;
|
|
|
|
&:first-child {
|
|
|
|
border-top-left-radius: var(--radius-inner);
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
border-top-right-radius: var(--radius-inner);
|
|
|
|
}
|
|
|
|
&.active {
|
|
|
|
color: #fff;
|
|
|
|
background: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-form {
|
|
|
|
border-radius: 6px 0 6px 6px;
|
|
|
|
background: var(--classD);
|
|
|
|
.head {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border-bottom: 1px solid var(--classA);
|
|
|
|
.list {
|
|
|
|
flex: 1;
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0 15px;
|
|
|
|
height: 40px;
|
|
|
|
color: var(--routine);
|
|
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
|
|
position: relative;
|
|
|
|
&::after,
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
width: 1px;
|
|
|
|
height: 15px;
|
|
|
|
background: var(--classA);
|
|
|
|
}
|
|
|
|
&::before {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
&::after {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.body {
|
|
|
|
padding: 15px;
|
|
|
|
.text {
|
|
|
|
width: 100%;
|
|
|
|
height: 200px;
|
|
|
|
border: none;
|
|
|
|
resize: none;
|
|
|
|
vertical-align: middle;
|
|
|
|
color: var(--routine);
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
.draw {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
.line {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
|
|
|
user-select: none;
|
|
|
|
li {
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 10px;
|
|
|
|
color: var(--main);
|
|
|
|
transition: color 0.35s;
|
|
|
|
&.active {
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.color {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
left: 10px;
|
|
|
|
li {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin: 0 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: box-shadow 0.35s;
|
|
|
|
&.active {
|
|
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
|
|
|
|
}
|
|
|
|
&:nth-child(1) {
|
|
|
|
background: #303133;
|
|
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
|
|
background: #67c23a;
|
|
|
|
}
|
|
|
|
&:nth-child(3) {
|
|
|
|
background: #e6a23c;
|
|
|
|
}
|
|
|
|
&:nth-child(4) {
|
|
|
|
background: #f56c6c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
fill: var(--minor);
|
|
|
|
user-select: none;
|
|
|
|
&-undo {
|
|
|
|
top: 10px;
|
|
|
|
}
|
|
|
|
&-animate {
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
canvas {
|
|
|
|
background: var(--background);
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.foot {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 0 15px 15px;
|
|
|
|
.owo {
|
|
|
|
min-height: 32px;
|
|
|
|
padding-top: 3px;
|
|
|
|
.seat {
|
|
|
|
text-align: center;
|
|
|
|
color: var(--routine);
|
|
|
|
height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
background: var(--background);
|
|
|
|
opacity: 0.85;
|
|
|
|
border-radius: 13px;
|
|
|
|
width: 70px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.submit {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 15px;
|
|
|
|
white-space: nowrap;
|
|
|
|
.cancle {
|
|
|
|
display: none;
|
|
|
|
color: var(--main);
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 10px;
|
|
|
|
transition: color 0.35s;
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
border-radius: 3px;
|
|
|
|
height: 32px;
|
|
|
|
padding: 0 15px;
|
|
|
|
border: none;
|
|
|
|
background: var(--theme);
|
|
|
|
color: #fff;
|
|
|
|
font-size: 14px;
|
|
|
|
&:hover {
|
|
|
|
animation: 5s ease-in-out 0s infinite normal none running shaked;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.comment-list {
|
|
|
|
padding-top: 15px;
|
|
|
|
&__item {
|
|
|
|
&-contain {
|
|
|
|
.term {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
.avatar {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-right: 15px;
|
|
|
|
padding: 3px;
|
|
|
|
border: 1px solid var(--classD);
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.content {
|
|
|
|
min-width: 0;
|
|
|
|
flex: 1;
|
|
|
|
border-bottom: 1px solid var(--classC);
|
|
|
|
padding-bottom: 15px;
|
|
|
|
.user {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
line-height: 20px;
|
|
|
|
color: var(--main);
|
|
|
|
.author {
|
2021-04-22 00:52:00 +00:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2021-03-31 08:45:08 +00:00
|
|
|
margin-right: 10px;
|
|
|
|
a {
|
|
|
|
color: #409eff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.owner {
|
2021-04-22 00:52:00 +00:00
|
|
|
flex-shrink: 0;
|
2021-03-31 08:45:08 +00:00
|
|
|
background: var(--theme);
|
|
|
|
color: #fff;
|
|
|
|
padding: 0 5px;
|
|
|
|
border-radius: 2px;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
.agent {
|
|
|
|
margin-left: auto;
|
|
|
|
font-size: 12px;
|
|
|
|
color: var(--minor);
|
|
|
|
}
|
|
|
|
.waiting {
|
|
|
|
color: #e6a23c;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.substance {
|
|
|
|
width: 100%;
|
|
|
|
background: var(--classD);
|
|
|
|
padding: 12px 15px;
|
|
|
|
border-radius: 0 var(--radius-inner) var(--radius-inner) 10px;
|
|
|
|
color: var(--main);
|
|
|
|
margin-bottom: 8px;
|
|
|
|
word-break: break-all;
|
|
|
|
line-height: 24px;
|
|
|
|
.parent {
|
|
|
|
color: #388bff;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
user-select: none;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
.owo_image {
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
.draw_image {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.handle {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
color: var(--minor);
|
|
|
|
.date {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
.reply {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
color: var(--main);
|
|
|
|
font-size: 13px;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: color 0.35s;
|
|
|
|
.icon {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
color: var(--theme);
|
|
|
|
.icon {
|
|
|
|
fill: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-children {
|
|
|
|
padding-left: 63px;
|
|
|
|
.comment-list__item-children {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_comment__respond {
|
|
|
|
margin-left: 63px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
animation: showComment 0.5s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.comment-list {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.joe_pagination {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2021-01-23 08:15:02 +00:00
|
|
|
}
|
|
|
|
|
2021-02-15 05:26:39 +00:00
|
|
|
.joe_run {
|
2021-03-31 08:45:08 +00:00
|
|
|
&__day,
|
|
|
|
&__hour,
|
|
|
|
&__minute,
|
|
|
|
&__second {
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--theme);
|
|
|
|
}
|
2021-02-19 07:08:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.joe_owo {
|
2021-03-31 08:45:08 +00:00
|
|
|
&__contain {
|
|
|
|
position: relative;
|
|
|
|
.seat {
|
|
|
|
user-select: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.box {
|
|
|
|
width: 100%;
|
|
|
|
display: none;
|
|
|
|
background: var(--background);
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
overflow: hidden;
|
|
|
|
margin-top: 15px;
|
|
|
|
.scroll {
|
|
|
|
display: none;
|
|
|
|
max-height: 200px;
|
|
|
|
overflow-y: auto;
|
|
|
|
overscroll-behavior: none;
|
|
|
|
padding: 5px;
|
|
|
|
.item {
|
|
|
|
text-align: center;
|
|
|
|
width: calc(100% / 18);
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: var(--radius-inner);
|
|
|
|
transition: background 0.25s;
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background: var(--classD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:nth-child(3) {
|
|
|
|
.item {
|
|
|
|
color: var(--routine);
|
|
|
|
width: calc(100% / 5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.bar {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border-top: 1px solid var(--classC);
|
|
|
|
.item {
|
|
|
|
line-height: 30px;
|
|
|
|
padding: 0 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--routine);
|
|
|
|
transition: background 0.25s, color 0.25s;
|
|
|
|
&.active {
|
|
|
|
color: #fff;
|
|
|
|
background: var(--theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-15 05:26:39 +00:00
|
|
|
}
|
|
|
|
|
2021-01-25 10:36:43 +00:00
|
|
|
.profile-color-modes-illu-frame {
|
2021-03-31 08:45:08 +00:00
|
|
|
opacity: 0;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-red {
|
2021-03-31 08:45:08 +00:00
|
|
|
stroke: #da3633;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-orange {
|
2021-03-31 08:45:08 +00:00
|
|
|
stroke: #f0883e;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-purple {
|
2021-03-31 08:45:08 +00:00
|
|
|
stroke: #8957e5;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-green {
|
2021-03-31 08:45:08 +00:00
|
|
|
stroke: #3fb950;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-blue {
|
2021-03-31 08:45:08 +00:00
|
|
|
stroke: #388bfd;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-group {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation: profile-color-modes-illu-anim 0.2s cubic-bezier(0.72, 0.08, 1, 0.68) backwards;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation: profile-color-modes-illu-anim-frame-show 0s forwards, profile-color-modes-illu-anim-frame-hide 0s forwards;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:first-child {
|
2021-03-31 08:45:08 +00:00
|
|
|
opacity: 1;
|
|
|
|
animation: profile-color-modes-illu-anim-frame-hide 0s forwards;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:nth-child(8) {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation: profile-color-modes-illu-anim-frame-show 0s forwards;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-red {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 0.4s;
|
|
|
|
animation-duration: 0.1s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-orange {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 0.5s;
|
|
|
|
animation-duration: 0.1s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-purple {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 0.6s;
|
|
|
|
animation-duration: 0.1s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-blue {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 0.7s;
|
|
|
|
animation-duration: 0.1s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-green {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 0.8s;
|
|
|
|
animation-duration: 0.2s;
|
|
|
|
animation-timing-function: cubic-bezier(0.47, 2.92, 0.84, -1.5);
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:first-child {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 1.8s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:nth-child(2) {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 1.8s, 2.58s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:nth-child(3) {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 2.58s, 2.66s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:nth-child(4) {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 2.66s, 2.78s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:nth-child(5) {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 2.78s, 2.84s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:nth-child(6) {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 2.84s, 3.44s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:nth-child(7) {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 3.44s, 3.56s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:nth-child(8) {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation-delay: 3.56s;
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
.profile-color-modes-illu-frame:nth-child(9),
|
|
|
|
.profile-color-modes-illu-frame:nth-child(10) {
|
2021-03-31 08:45:08 +00:00
|
|
|
animation: none;
|
2021-02-06 12:30:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes wobble-bottom {
|
2021-03-31 08:45:08 +00:00
|
|
|
16.65% {
|
|
|
|
transform: skew(-12deg);
|
|
|
|
}
|
2021-02-06 12:30:38 +00:00
|
|
|
|
2021-03-31 08:45:08 +00:00
|
|
|
33.3% {
|
|
|
|
transform: skew(10deg);
|
|
|
|
}
|
2021-02-06 12:30:38 +00:00
|
|
|
|
2021-03-31 08:45:08 +00:00
|
|
|
49.95% {
|
|
|
|
transform: skew(-6deg);
|
|
|
|
}
|
2021-02-06 12:30:38 +00:00
|
|
|
|
2021-03-31 08:45:08 +00:00
|
|
|
66.6% {
|
|
|
|
transform: skew(4deg);
|
|
|
|
}
|
2021-02-06 12:30:38 +00:00
|
|
|
|
2021-03-31 08:45:08 +00:00
|
|
|
83.25% {
|
|
|
|
transform: skew(-2deg);
|
|
|
|
}
|
2021-02-06 12:30:38 +00:00
|
|
|
|
2021-03-31 08:45:08 +00:00
|
|
|
100% {
|
|
|
|
transform: skew(0);
|
|
|
|
}
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
2021-01-27 09:10:23 +00:00
|
|
|
|
|
|
|
@keyframes showComment {
|
2021-03-31 08:45:08 +00:00
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0.3);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1.05);
|
|
|
|
}
|
|
|
|
70% {
|
|
|
|
transform: scale(0.9);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
2021-01-27 09:10:23 +00:00
|
|
|
}
|
2021-01-23 08:15:02 +00:00
|
|
|
@keyframes box_shadow {
|
2021-03-31 08:45:08 +00:00
|
|
|
0% {
|
|
|
|
box-shadow: 0 0 0 0 #f56c6c;
|
|
|
|
}
|
2021-01-22 10:37:16 +00:00
|
|
|
}
|
2021-01-20 06:15:32 +00:00
|
|
|
@keyframes progress {
|
2021-03-31 08:45:08 +00:00
|
|
|
0% {
|
|
|
|
background-position: 0 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
background-position: 30px 0;
|
|
|
|
}
|
2021-01-22 05:03:35 +00:00
|
|
|
}
|
|
|
|
@keyframes list_thumbnail_loading {
|
2021-03-31 08:45:08 +00:00
|
|
|
0% {
|
|
|
|
transform: scale(0.85);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
2021-01-22 05:03:35 +00:00
|
|
|
}
|
|
|
|
@keyframes list_title_loading {
|
2021-03-31 08:45:08 +00:00
|
|
|
0% {
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
width: 95%;
|
|
|
|
}
|
2021-01-22 05:03:35 +00:00
|
|
|
}
|
|
|
|
@keyframes list_abstract_loading {
|
2021-03-31 08:45:08 +00:00
|
|
|
0% {
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
width: 80%;
|
|
|
|
}
|
2021-01-19 09:56:21 +00:00
|
|
|
}
|
2021-01-25 10:36:43 +00:00
|
|
|
@keyframes profile-color-modes-illu-anim {
|
2021-03-31 08:45:08 +00:00
|
|
|
0% {
|
|
|
|
stroke: #666;
|
|
|
|
}
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
@keyframes profile-color-modes-illu-anim-frame-show {
|
2021-03-31 08:45:08 +00:00
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2021-01-25 10:36:43 +00:00
|
|
|
}
|
|
|
|
@keyframes profile-color-modes-illu-anim-frame-hide {
|
2021-03-31 08:45:08 +00:00
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2021-01-27 12:05:59 +00:00
|
|
|
}
|
|
|
|
|
2021-02-07 15:14:34 +00:00
|
|
|
@keyframes shaked {
|
2021-03-31 08:45:08 +00:00
|
|
|
2% {
|
|
|
|
transform: translateY(1.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
4% {
|
|
|
|
transform: translateY(-1.5px) rotate(-0.5deg);
|
|
|
|
}
|
|
|
|
6% {
|
|
|
|
transform: translateY(1.5px) rotate(-1.5deg);
|
|
|
|
}
|
|
|
|
8% {
|
|
|
|
transform: translateY(-1.5px) rotate(-1.5deg);
|
|
|
|
}
|
|
|
|
10% {
|
|
|
|
transform: translateY(2.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
12% {
|
|
|
|
transform: translateY(-0.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
14% {
|
|
|
|
transform: translateY(-1.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
16% {
|
|
|
|
transform: translateY(-0.5px) rotate(-1.5deg);
|
|
|
|
}
|
|
|
|
18% {
|
|
|
|
transform: translateY(0.5px) rotate(-1.5deg);
|
|
|
|
}
|
|
|
|
20% {
|
|
|
|
transform: translateY(-1.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
22% {
|
|
|
|
transform: translateY(0.5px) rotate(-1.5deg);
|
|
|
|
}
|
|
|
|
24% {
|
|
|
|
transform: translateY(1.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
26% {
|
|
|
|
transform: translateY(0.5px) rotate(0.5deg);
|
|
|
|
}
|
|
|
|
28% {
|
|
|
|
transform: translateY(0.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
30% {
|
|
|
|
transform: translateY(-0.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
32%,
|
|
|
|
34% {
|
|
|
|
transform: translateY(1.5px) rotate(-0.5deg);
|
|
|
|
}
|
|
|
|
36% {
|
|
|
|
transform: translateY(-1.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
38% {
|
|
|
|
transform: translateY(1.5px) rotate(-1.5deg);
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
transform: translateY(-0.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
42% {
|
|
|
|
transform: translateY(2.5px) rotate(-1.5deg);
|
|
|
|
}
|
|
|
|
44% {
|
|
|
|
transform: translateY(1.5px) rotate(0.5deg);
|
|
|
|
}
|
|
|
|
46% {
|
|
|
|
transform: translateY(-1.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
48% {
|
|
|
|
transform: translateY(-0.5px) rotate(0.5deg);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: translateY(0.5px) rotate(0.5deg);
|
|
|
|
}
|
|
|
|
52% {
|
|
|
|
transform: translateY(2.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
54% {
|
|
|
|
transform: translateY(-1.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
56% {
|
|
|
|
transform: translateY(2.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
58% {
|
|
|
|
transform: translateY(0.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
transform: translateY(2.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
62% {
|
|
|
|
transform: translateY(-0.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
64% {
|
|
|
|
transform: translateY(-0.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
66% {
|
|
|
|
transform: translateY(1.5px) rotate(-0.5deg);
|
|
|
|
}
|
|
|
|
68% {
|
|
|
|
transform: translateY(-1.5px) rotate(-0.5deg);
|
|
|
|
}
|
|
|
|
70% {
|
|
|
|
transform: translateY(1.5px) rotate(0.5deg);
|
|
|
|
}
|
|
|
|
72% {
|
|
|
|
transform: translateY(2.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
74% {
|
|
|
|
transform: translateY(-0.5px) rotate(0.5deg);
|
|
|
|
}
|
|
|
|
76% {
|
|
|
|
transform: translateY(-0.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
78% {
|
|
|
|
transform: translateY(-0.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
transform: translateY(1.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
82% {
|
|
|
|
transform: translateY(-0.5px) rotate(0.5deg);
|
|
|
|
}
|
|
|
|
84% {
|
|
|
|
transform: translateY(1.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
86% {
|
|
|
|
transform: translateY(-1.5px) rotate(-1.5deg);
|
|
|
|
}
|
|
|
|
88% {
|
|
|
|
transform: translateY(-0.5px) rotate(2.5deg);
|
|
|
|
}
|
|
|
|
90% {
|
|
|
|
transform: translateY(2.5px) rotate(-0.5deg);
|
|
|
|
}
|
|
|
|
92% {
|
|
|
|
transform: translateY(0.5px) rotate(-0.5deg);
|
|
|
|
}
|
|
|
|
94% {
|
|
|
|
transform: translateY(2.5px) rotate(0.5deg);
|
|
|
|
}
|
|
|
|
96% {
|
|
|
|
transform: translateY(-0.5px) rotate(1.5deg);
|
|
|
|
}
|
|
|
|
98% {
|
|
|
|
transform: translateY(-1.5px) rotate(-0.5deg);
|
|
|
|
}
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
transform: translate(0px) rotate(0deg);
|
|
|
|
}
|
2021-03-07 06:28:02 +00:00
|
|
|
}
|
|
|
|
@keyframes overdue {
|
2021-03-31 08:45:08 +00:00
|
|
|
0% {
|
2021-03-07 06:28:02 +00:00
|
|
|
clip-path: circle(0 at 0 0);
|
2021-03-02 12:31:37 +00:00
|
|
|
}
|
2021-03-31 08:45:08 +00:00
|
|
|
100% {
|
|
|
|
clip-path: circle(100%);
|
2021-03-02 12:31:37 +00:00
|
|
|
}
|
2021-03-31 08:45:08 +00:00
|
|
|
}
|
2021-04-21 07:09:39 +00:00
|
|
|
@keyframes progress-active {
|
2021-04-21 08:07:59 +00:00
|
|
|
0% {
|
|
|
|
opacity: 0.3;
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|