Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.37 KB | None | 0 0
  1. <template>
  2.     <div class="top-books-authors">
  3.         <el-row>
  4.             <el-col :span="12">
  5.                 <h1 class="col-title">Top 6 Books</h1>
  6.                 <el-row>
  7.                     <el-col :span="6">
  8.                         <div class = "top_book_cover"><img :scr = "top_6_books[0].icon" :alt="top_6_books[0].name"></div>
  9.                     </el-col>
  10.                     <!-- <el-col :span="6"><div class="grid-content bg-purple-light">AAAAAAA</div></el-col> -->
  11.                 </el-row>
  12.             </el-col>
  13.             <el-col :span="12">
  14.                 <h1 class="col-title">Top 3 Authors</h1>
  15.             </el-col>
  16.         </el-row>
  17.     </div>
  18. </template>
  19.  
  20.  
  21. <script>
  22.     import biography_icon from  '../../assets/images/biography_icon.png'
  23.     import business_icon from  '../../assets/images/business_icon.png'
  24.     import cookbook_icon from  '../../assets/images/cookbook_icon.png'
  25.     import romantic_icon from  '../../assets/images/romantic_icon.png'
  26.  
  27.     export default {
  28.         name: 'TopBooksAuthors',
  29.         data: () => {
  30.             return {
  31.                 top_6_books: [
  32.                     {
  33.                         'name': 'biography',
  34.                         'icon': biography_icon,
  35.                         'color': ['#fbac7e', '#f7cd69']
  36.                     },
  37.                     {
  38.                         'name': 'business',
  39.                         'icon': business_icon,
  40.                         'color': ['#8a94e1', '#6bc0f7']
  41.                     },
  42.                     {
  43.                         'name': 'romantic',
  44.                         'icon': romantic_icon,
  45.                         'color': ['#fc5ccb', '#fc82a2']
  46.                     },
  47.                     {
  48.                         'name': 'cookbooks',
  49.                         'icon': cookbook_icon,
  50.                         'color': ['#fc82a2', '#adc8fe']
  51.                     }
  52.                 ]
  53.             }
  54.         }
  55.     }
  56. </script>
  57.  
  58.  
  59. <style scoped lang="scss">
  60.     .top-books-authors {
  61.  
  62.         width: 100%;
  63.         height: 100px;
  64.  
  65.         .col-title {
  66.             font-size: 50px;
  67.             letter-spacing: 1px;
  68.             font-weight: bold;
  69.         }
  70.  
  71.         .top_book_cover{
  72.             img {
  73.                 width: 100%;
  74.                 min-width: 408px;
  75.                 min-height: 660px;
  76.             }
  77.         }
  78.     }
  79.    
  80. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement