-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
78 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
title: 成员 | ||
summary: FFCafe 肥肥咖啡的成员信息 | ||
include_footer: true | ||
--- | ||
<br> | ||
|
||
<center> | ||
|
||
{{< namecard name="云泽宛风" title="光之拖延症" color="#ffa3a2" avatar="yzwf.jpg" >}} | ||
{{< namecard name="YuzurihaAsano" title="啥也不干" color="#e59dc0" avatar="ya.jpg" >}} | ||
{{< namecard name="SarasaRyuuou" title="抹茶爱好者" color="#778511" avatar="sarasa.jpg" >}} | ||
{{< namecard name="阿布evo" title="家养懒猫" color="#3654a1" avatar="evo.jpg" >}} | ||
{{< namecard name="伊芙喵!" title="回线接线师" color="#2ecc71" avatar="yyf.png" >}} | ||
{{< namecard name="Noisyfox" title="摩杜纳最菜吃馍" color="#bc482f" avatar="fox.png" >}} | ||
|
||
<small>排名不分先后。</small> | ||
|
||
<a class="button is-warning is-rounded is-inverted is-outlined is-large" href="/join-us">加入我们</a> | ||
|
||
</center> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
.namecard { | ||
display: inline-flex; | ||
cursor: default; | ||
width: 300px; | ||
margin-right: 1.25em; | ||
margin-bottom: 1.25em; | ||
padding: 0.6em; | ||
border-radius: 8px; | ||
align-items: center; | ||
transition: transform 0.27s; | ||
border: 2px solid rgba(0, 0, 0, 0.15); | ||
|
||
&:hover { | ||
transform: scale3d(1.1, 1.1, 1.1); | ||
} | ||
|
||
.avatar { | ||
width: 96px; | ||
height: 96px; | ||
margin-right: 1em; | ||
display: flex; | ||
align-items: center; | ||
img { | ||
border-radius: 100%; | ||
overflow: hidden; | ||
} | ||
} | ||
|
||
.details { | ||
flex: 1; | ||
color: #fff; | ||
text-align: center; | ||
|
||
.namecard-name { | ||
font-size: 1.5em; | ||
} | ||
.namecard-title { | ||
font-size: 0.8em; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
@import "bulma/bulma" | ||
@import "fresh/core" | ||
@import "actdl" | ||
@import "namecard" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class="namecard" style='background-color: {{ .Get "color" }} ;'> | ||
<div class="avatar"> | ||
<img src="{{ printf "/images/avatars/%s" $.Params.avatar | relURL }}" alt='{{ .Get "name" }}'> | ||
</div> | ||
<div class="details"> | ||
<div class="name-line"> | ||
<div class="namecard-name">{{ .Get "name" }}</div> | ||
<div class="namecard-title">{{ .Get "title" }}</div> | ||
</div> | ||
</div> | ||
</div> |