Advertisement
Guest User

Untitled

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