2021-09-17 00:18:50 +08:00
|
|
|
---
|
|
|
|
page: true
|
|
|
|
---
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
2020-08-13 15:18:26 +08:00
|
|
|
</script>
|
2021-09-17 00:18:50 +08:00
|
|
|
|
2020-12-11 16:46:42 +08:00
|
|
|
<style lang="scss" scoped>
|
2021-09-04 19:29:28 +08:00
|
|
|
.page-resource {
|
|
|
|
padding-top: 55px;
|
|
|
|
box-sizing: border-box;
|
2020-08-13 15:18:26 +08:00
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
.resource-placeholder {
|
|
|
|
margin: 50px auto 100px;
|
|
|
|
text-align: center;
|
2020-08-13 15:18:26 +08:00
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
img {
|
|
|
|
width: 150px;
|
|
|
|
}
|
2020-08-13 15:18:26 +08:00
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
h4 {
|
|
|
|
margin: 20px 0 16px;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #1f2f3d;
|
|
|
|
line-height: 1;
|
|
|
|
}
|
2020-08-13 15:18:26 +08:00
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #99a9bf;
|
|
|
|
line-height: 1;
|
2020-08-13 15:18:26 +08:00
|
|
|
}
|
|
|
|
}
|
2021-09-04 19:29:28 +08:00
|
|
|
}
|
|
|
|
.cards {
|
|
|
|
margin: 35px auto 110px;
|
2020-08-13 15:18:26 +08:00
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
.container {
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
display: table;
|
|
|
|
content: '';
|
2020-08-13 15:18:26 +08:00
|
|
|
}
|
2021-09-04 19:29:28 +08:00
|
|
|
&::after {
|
|
|
|
clear: both;
|
2020-08-13 15:18:26 +08:00
|
|
|
}
|
2021-09-04 19:29:28 +08:00
|
|
|
padding: 0;
|
|
|
|
margin: 0 -11px;
|
|
|
|
width: auto;
|
2020-08-13 15:18:26 +08:00
|
|
|
}
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
li {
|
|
|
|
width: 33.33333%;
|
|
|
|
padding: 0 11px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
float: left;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-size: 28px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #5e6d82;
|
|
|
|
}
|
|
|
|
.card {
|
2021-09-18 00:34:56 +08:00
|
|
|
padding-bottom: 16px;
|
2021-09-04 19:29:28 +08:00
|
|
|
width: 100%;
|
|
|
|
background: #ffffff;
|
|
|
|
border: 1px solid var(--el-border-color-base);
|
|
|
|
border-radius: 5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
transition: bottom 0.3s;
|
|
|
|
bottom: 0;
|
|
|
|
|
|
|
|
img {
|
|
|
|
margin: 75px auto 35px;
|
|
|
|
height: 87px;
|
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
margin: 0 0 10px;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #1f2f3d;
|
|
|
|
font-weight: normal;
|
|
|
|
height: 22px;
|
2020-08-13 15:18:26 +08:00
|
|
|
}
|
|
|
|
p {
|
|
|
|
font-size: 14px;
|
2021-09-04 19:29:28 +08:00
|
|
|
color: #99a9bf;
|
|
|
|
padding: 0 30px;
|
|
|
|
margin: 0;
|
|
|
|
word-break: break-all;
|
|
|
|
line-height: 1.8; // 1.6 for english
|
2020-08-13 15:18:26 +08:00
|
|
|
}
|
2021-09-04 19:29:28 +08:00
|
|
|
a {
|
|
|
|
height: 42px;
|
|
|
|
width: 190px;
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 42px;
|
|
|
|
font-size: 14px;
|
|
|
|
background-color: #409eff;
|
|
|
|
color: #fff;
|
2020-08-13 15:18:26 +08:00
|
|
|
text-align: center;
|
2021-09-04 19:29:28 +08:00
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 2px;
|
|
|
|
transition: all 0.3s;
|
|
|
|
text-decoration: none;
|
|
|
|
margin-top: 20px;
|
2020-08-13 15:18:26 +08:00
|
|
|
}
|
2021-09-04 19:29:28 +08:00
|
|
|
}
|
|
|
|
@media (max-width: 850px) {
|
|
|
|
.cards {
|
|
|
|
li {
|
|
|
|
max-width: 500px;
|
|
|
|
float: none;
|
|
|
|
margin: 10px auto 30px;
|
|
|
|
width: 80%;
|
|
|
|
.card {
|
2020-08-13 15:18:26 +08:00
|
|
|
height: auto;
|
2021-09-04 19:29:28 +08:00
|
|
|
padding-bottom: 20px;
|
2020-08-13 15:18:26 +08:00
|
|
|
}
|
|
|
|
}
|
2021-09-04 19:29:28 +08:00
|
|
|
h3 {
|
|
|
|
height: auto;
|
|
|
|
}
|
2020-08-13 15:18:26 +08:00
|
|
|
}
|
2021-09-04 19:29:28 +08:00
|
|
|
}
|
2020-08-13 15:18:26 +08:00
|
|
|
</style>
|
2021-09-17 00:18:50 +08:00
|
|
|
|
|
|
|
<div class="page-container page-resource">
|
|
|
|
<h1>Resources</h1>
|
|
|
|
<p>More resources will be developed</p>
|
|
|
|
<div class="cards">
|
|
|
|
<ul class="container">
|
|
|
|
<li>
|
|
|
|
<div class="card">
|
|
|
|
<img src="/images/Axure-Components.svg" alt="axure" />
|
|
|
|
<h3>Axure Components</h3>
|
|
|
|
<p>By importing Element UI in Axure, you can easily apply all the components we provide during interaction design.</p>
|
|
|
|
<a
|
|
|
|
onclick="ga('send', 'event', 'ResourceDownload', 'Download', 'Axure');"
|
|
|
|
href="https://github.com/ElementUI/Resources/raw/master/Element_Components_v2.1.0.rplib"
|
|
|
|
>Download</a
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<div class="card">
|
|
|
|
<img src="/images/Sketch-Template.svg" alt="Sketch" />
|
|
|
|
<h3>Sketch Template</h3>
|
|
|
|
<p>Apply components from Element template, so you can improve design efficiency while keeping a unified visual style.</p>
|
|
|
|
<a
|
|
|
|
onclick="ga('send', 'event', 'ResourceDownload', 'Download', 'Sketch');"
|
|
|
|
href="https://github.com/ElementUI/Resources/raw/master/Element%20UI%20Kit_v2.0.sketch"
|
|
|
|
>Download</a
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
h1 {
|
|
|
|
color: var(--text-color);
|
|
|
|
|
|
|
|
+ p {
|
|
|
|
color: var(--text-color-light);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
background-color: var(--bg-color-soft);
|
|
|
|
border-color: var(--border-color);
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.page-resource {
|
|
|
|
padding: 55px 40px 0;
|
|
|
|
}
|
|
|
|
</style>
|