Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.56 KB | None | 0 0
  1. /* tag page
  2.  
  3. div.tag-page
  4.   max-width: 800px
  5.   margin: 20px auto
  6.   display: block
  7.   padding-bottom: 200px
  8.  
  9. #js-tag-edit-form
  10.   display: none
  11.  
  12. .tag-page
  13.   p
  14.     font-size: 17px
  15.     line-height: 25px
  16.     font-family: latoregular
  17.   .tag-page-header
  18.     text-align: center
  19.     h1
  20.       font-size: 50px
  21.       font-family: latolight
  22.       margin-bottom: 10px
  23.       margin-top: 30px
  24.       font-weight: normal
  25.     p.tag-page-header-title
  26.       font-size: 22px
  27.       line-height: 30px
  28.   .tag-page-documents-list
  29.     margin-bottom: 30px
  30.     div.tag-page-document
  31.       margin: 0 0 50px 0
  32.       background-color: white
  33.     .tag-page-document
  34.       .tag-page-article-info
  35.         padding: 20px
  36.         .tag-page-article-info-description
  37.           margin-bottom: 35px
  38.         .tag-page-article-info-intro
  39.           margin-bottom: 35px
  40.           max-height: 300px
  41.           overflow: hidden
  42.           position: relative
  43.           &::after
  44.             position: absolute
  45.             bottom: 0
  46.             left: 0
  47.             right: 0
  48.             height: 100px
  49.             content: ''
  50.             background: rgba(255, 255, 255, 0)
  51.             background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%)
  52.             background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 1)))
  53.             background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%)
  54.             background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%)
  55.             background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%)
  56.             background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%)
  57.             filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 )
  58.         .tag-page-article-info-sources
  59.           font-size: 18px
  60.           font-family: latomedium
  61.           float: right
  62.           margin: 0px
  63.       .tag-page-article-info-sources span
  64.         background-color: #ffd800
  65.         font-family: latoheavy
  66.         padding: 5px 5px 3px 5px
  67.       h2
  68.         font-family: latomedium
  69.         font-size: 40px
  70.         line-height: 50px
  71.         margin: 0 0 10px 0
  72.         a
  73.           background: none
  74.           color: #333
  75.   .tag-edit-form
  76.     textarea
  77.       width: 100%
  78.       box-sizing: border-box
  79.       height: 300px
  80.       padding: 10px
  81.     .button
  82.       margin: 10px 30px 0 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement