123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <style scoped>
- .page-resource {
- padding-top: 55px;
- }
- .cards {
- margin: 35px auto 110px;
- .container {
- @utils-clearfix;
- padding: 0;
- margin: 0 -11px;
- width: auto;
- }
- 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 {
- height: 394px;
- width: 100%;
- background:#ffffff;
- border:1px solid #eaeefb;
- border-radius:5px;
- box-sizing: border-box;
- text-align: center;
- position: relative;
- transition: bottom .3s;
- bottom: 0;
- img {
- margin: 75px auto 35px;
- }
- h3 {
- margin: 0 0 10px;
- font-size: 18px;
- color: #1f2f3d;
- font-weight: normal;
- }
- p {
- font-size: 14px;
- color: #99a9bf;
- padding: 0 30px;
- margin: 0;
- }
- a {
- height: 42px;
- width: 190px;
- display: inline-block;
- line-height: @height;
- font-size: 14px;
- background-color: #20a0ff;
- color: #fff;
- text-align: center;
- border: 0;
- padding: 0;
- cursor: pointer;
- border-radius: 2px;
- transition: all .3s;
- text-decoration: none;
- margin-top: 20px;
- }
- }
- </style>
- <template>
- <div class="page-container page-resource">
- <h2>资源</h2>
- <p>这里提供 Element 相关设计资源和设计工具的下载,更多设计资源正在整理和完善中。</p>
- <div class="cards">
- <ul class="container">
- <li>
- <div class="card">
- <img src="~examples/assets/images/Axure-Components.svg" alt="">
- <h3>Axure Components</h3>
- <p>通过在 Axure 中导入 Element 组件库,可以在交互设计阶段方便地调用常用的组件</p>
- <a href="">下载</a>
- </div>
- </li>
- <li>
- <div class="card">
- <img src="~examples/assets/images/Sketch-Template.svg" alt="">
- <h3>Sketch Template</h3>
- <p>从 Element Template 快速调用常用组件,在提升设计效率的同时,保证统一的视觉风格</p>
- <a href="">下载</a>
- </div>
- </li>
- <li>
- <div class="card">
- <img src="~examples/assets/images/Module.svg" alt="">
- <h3>组件交互文档</h3>
- <p>进一步查看 Element 交互文档,从一个较为微观的角度详细地了解各个组件的交互细节</p>
- <a href="">下载</a>
- </div>
- </li>
- </ul>
- </div>
- </div>
- </template>
|