Vulcan/client/sass/modules/_users.scss

78 lines
962 B
SCSS
Raw Normal View History

2013-11-08 09:47:23 +09:00
.filter-sort{
@include cf;
2013-11-04 22:05:19 +09:00
background: $lightest-grey;
@include border-radius(3px);
padding: 8px 15px;
font-size: 13px;
2013-11-04 22:05:19 +09:00
a, span{
display: inline-block;
margin-right: 20px;
&.active{
border-bottom: 2px solid $blue;
}
&:last-child{
margin-right: 0;
}
2013-11-08 09:47:23 +09:00
}
.filter{
float: left;
2013-11-04 22:05:19 +09:00
}
2013-11-08 09:47:23 +09:00
.sort{
float: right;
}
2013-11-04 22:05:19 +09:00
}
2012-09-18 15:43:37 +09:00
.user-list, .user-table{
2013-11-22 14:20:47 +09:00
font-size: 13px;
2012-09-18 15:43:37 +09:00
.user{
.user-avatar{
height:30px;
width:30px;
2012-10-03 16:33:28 +09:00
background-size: 30px 30px;
2012-09-18 15:43:37 +09:00
display:block;
@include border-radius(30px);
}
2012-09-18 16:38:40 +09:00
.posts-list{
}
2012-09-18 15:43:37 +09:00
}
}
table{
2013-11-22 14:20:47 +09:00
width: 100%;
tr{
2013-11-22 14:20:47 +09:00
border-bottom: 1px solid #eee;
2013-11-22 14:46:42 +09:00
td, th{
padding:10px;
2013-11-22 14:46:42 +09:00
}
}
thead{
tr{
2013-11-22 14:20:47 +09:00
td, th{
font-weight:bold;
}
}
}
tbody{
tr{
td{
}
}
}
2013-11-22 14:46:42 +09:00
}
.search-date-header{
background: $lightest-grey;
th{
@include cf;
}
.search-date{
display: block;
float: left;
font-weight: bold;
}
.search-count{
font-size: 13px;
display: block;
float: right;
}
2012-09-18 15:43:37 +09:00
}