Add files via upload

This commit is contained in:
Arc
2019-12-12 23:08:26 +00:00
committed by GitHub
parent 4921ffc776
commit b7e5bff034
75 changed files with 6766 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
/*
* Component: Users List
* ---------------------
*/
.users-list {
&:extend(.list-unstyled);
> li {
width: 25%;
float: left;
padding: 10px;
text-align: center;
> img {
.border-radius(50%);
max-width: 100%;
height: auto;
}
}
}
.users-list-name,
.users-list-date {
display: block;
}
.users-list-name {
font-weight: 600;
color: #444;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
&:hover {
color: #999;
}
}
.users-list-date {
color: #999;
font-size: 12px;
}