mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
164 lines
4.4 KiB
Plaintext
164 lines
4.4 KiB
Plaintext
style.
|
|
.md-links {
|
|
min-height: calc(100% - 120px - 5pc - 6em);
|
|
text-align: center;
|
|
overflow: auto;
|
|
padding: 0;
|
|
margin: 0 auto;
|
|
}
|
|
.md-links-item {
|
|
height: 90px;
|
|
line-height: 17px;
|
|
margin: 20px 7px;
|
|
padding: 0px 0px;
|
|
transition: box-shadow 0.25s;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
border-radius: 8px;
|
|
-webkit-transform: perspective(1px) translateZ(0);
|
|
transform: perspective(1px) translateZ(0);
|
|
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
|
|
position: relative;
|
|
-webkit-transition-property: color;
|
|
transition-property: color;
|
|
-webkit-transition-duration: 0.3s;
|
|
transition-duration: 0.3s;
|
|
}
|
|
.md-links a {
|
|
color: #333;
|
|
text-decoration: none;
|
|
}
|
|
.md-links li {
|
|
width: calc(100%/3 - 14px);
|
|
float: left;
|
|
list-style: none;
|
|
}
|
|
.md-links-item img {
|
|
float: left;
|
|
border-radius: 35px;
|
|
margin: 11px 10px;
|
|
width: 70px;
|
|
height: 70px;
|
|
border: 0px solid #eaeefb;
|
|
}
|
|
.md-links-item:hover img{
|
|
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
|
-moz-transform: rotate(540deg);
|
|
-o-transform: rotate(540deg);
|
|
-webkit-transform: rotate(540deg);
|
|
transform: rotate(540deg);
|
|
}
|
|
.md-links-des{
|
|
padding: 16px 10px;
|
|
font-size:13px;
|
|
overflow: hidden;
|
|
height:50px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.md-links-item:before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: #2098D1 !important;
|
|
-webkit-transform: scale(0);
|
|
transform: scale(0);
|
|
-webkit-transition-property: transform;
|
|
transition-property: transform;
|
|
-webkit-transition-duration: 0.3s;
|
|
transition-duration: 0.3s;
|
|
-webkit-transition-timing-function: ease-out;
|
|
transition-timing-function: ease-out;
|
|
}
|
|
.md-links-item:hover, .md-links-item:focus, .md-links-item:active {
|
|
color: white;
|
|
}
|
|
.md-links-item:hover:before, .md-links-item:focus:before, .md-links-item:active:before {
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
}
|
|
.md-links-item a:hover{
|
|
cursor: pointer;
|
|
}
|
|
.md-links-title {
|
|
padding-top: 16px;
|
|
padding-right: 10px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
height:40px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
#scheme-Paradox .mdl-mini-footer{
|
|
clear: left;
|
|
}
|
|
#bottom{
|
|
position: relative;
|
|
}
|
|
.post-cards {
|
|
margin-top: 5px;
|
|
margin-bottom: 75px;
|
|
min-height: 100px;
|
|
padding: 15px;
|
|
/*background: #fff;*/
|
|
border-radius: 15px;
|
|
}
|
|
.comment-word{
|
|
font-weight:bold;
|
|
font-size:1.7em;
|
|
}
|
|
@media screen and (max-width:1100px){
|
|
.post-cards {
|
|
position: relative;
|
|
margin: -20px -16px 0;
|
|
border-radius: 18px;
|
|
padding: 16px;
|
|
}
|
|
.md-links li {
|
|
width: calc(100%/2 - 14px);
|
|
}
|
|
}
|
|
@media screen and (max-width:600px) {
|
|
.md-links li {
|
|
width: calc(100%/1 - 14px);
|
|
}
|
|
}
|
|
|
|
|
|
.flink
|
|
p(class="comment-word")= theme.Flink.headline
|
|
|
|
div(class="post-cards")
|
|
ul(class="md-links")
|
|
- var data = theme.flinks
|
|
- var i = 0
|
|
each item in data
|
|
li(class="md-links-item")
|
|
a(href=item.link title=item.name target="_blank")
|
|
img.lozad(data-src=item.avatar alt=item.name onerror=`onerror=null;src='${theme.lodding_bg.flink}'` height="72px")
|
|
div(class="md-links-title")=item.name
|
|
<br/>
|
|
div(class="md-links-des")=item.descr
|
|
|
|
|
|
<hr>
|
|
div
|
|
p(style="font-size:15px;font-weight:bold")= theme.Flink.info_headline
|
|
ul
|
|
li= theme.Flink.name
|
|
li= theme.Flink.address
|
|
li= theme.Flink.avatar
|
|
li= theme.Flink.info
|
|
|
|
<hr>
|
|
div(class="comment_int")
|
|
p(class="comment-word")= theme.Flink.comment
|
|
|
|
|
|
|