2016-02-29 19:42:08 +01:00
|
|
|
.card {
|
2016-03-12 20:47:22 +01:00
|
|
|
background: #282c37;
|
2016-03-05 23:42:40 +01:00
|
|
|
background-size: cover;
|
2016-03-06 12:34:39 +01:00
|
|
|
padding: 60px 0;
|
|
|
|
padding-bottom: 10px;
|
2016-03-05 23:42:40 +01:00
|
|
|
border-radius: 4px 4px 0 0;
|
2016-03-06 17:52:23 +01:00
|
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
|
2016-03-12 20:47:22 +01:00
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2016-02-29 19:42:08 +01:00
|
|
|
|
|
|
|
.name {
|
2016-03-05 23:42:40 +01:00
|
|
|
display: block;
|
2016-02-29 19:42:08 +01:00
|
|
|
font-size: 20px;
|
|
|
|
line-height: 18px * 1.5;
|
2016-03-05 23:42:40 +01:00
|
|
|
color: #fff;
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: center;
|
2016-03-12 20:47:22 +01:00
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
2016-02-29 19:42:08 +01:00
|
|
|
|
|
|
|
small {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
2016-03-05 23:42:40 +01:00
|
|
|
color: #2b90d9;
|
|
|
|
font-weight: 400;
|
2016-02-29 19:42:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
2016-03-05 23:42:40 +01:00
|
|
|
width: 120px;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 15px;
|
2016-03-12 20:47:22 +01:00
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
2016-02-29 19:42:08 +01:00
|
|
|
|
|
|
|
img {
|
2016-03-05 23:42:40 +01:00
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
2016-02-29 19:42:08 +01:00
|
|
|
display: block;
|
2016-03-05 23:42:40 +01:00
|
|
|
border-radius: 120px;
|
2016-02-29 19:42:08 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-06 12:34:39 +01:00
|
|
|
|
|
|
|
.details {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 30px;
|
2016-03-12 20:47:22 +01:00
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
2016-03-06 12:34:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.counter {
|
|
|
|
width: 80px;
|
|
|
|
color: #9baec8;
|
|
|
|
padding: 0 10px;
|
|
|
|
border-right: 1px solid #9baec8;
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
.counter-label {
|
|
|
|
font-size: 12px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.counter-number {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bio {
|
|
|
|
flex: 1;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
padding: 5px 10px;
|
|
|
|
color: #d9e1e8;
|
|
|
|
}
|
2016-02-29 19:42:08 +01:00
|
|
|
}
|
2016-03-19 12:49:34 +01:00
|
|
|
|
|
|
|
.pagination {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
a, .current, .next_page, .previous_page, .gap {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: 500;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 6px 10px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.current {
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 100px;
|
|
|
|
color: #282c37;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gap {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.previous_page, .next_page {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #d9e1e8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.previous_page {
|
|
|
|
float: left;
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.next_page {
|
|
|
|
float: right;
|
|
|
|
padding-right: 0;
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.disabled {
|
|
|
|
cursor: default;
|
|
|
|
color: lighten(#282c37, 10%);
|
|
|
|
}
|
|
|
|
}
|