Back to home page

EIC code displayed by LXR

 
 

    


Warning, /iDDS/monitor/data/scss/widgets/steamline.scss is written in an unsupported language. File is not indexed.

0001 /*******************/
0002 /*Steam line widget*/
0003 /*******************/
0004 .steamline {
0005     position: relative;
0006     border-left: 1px solid $border-color;
0007     margin-left: 20px;
0008     .sl-left {
0009         float: $lft;
0010         margin-left: -20px;
0011         z-index: 1;
0012         width: 40px;
0013         line-height: 40px;
0014         text-align: center;
0015         height: 40px;
0016         border-radius: 100%;
0017         color: $white;
0018         
0019         margin-right: 15px;
0020         img {
0021             max-width: 40px;
0022         }
0023     }
0024 }
0025 
0026 .steamline .sl-right {
0027     padding-left: 30px;
0028     
0029     .desc,
0030     .inline-photos {
0031         margin-bottom: 21px;
0032     }
0033     
0034 }
0035 
0036 .steamline .sl-item {
0037     border-bottom: 1px solid $border-color;
0038     margin: 20px 0;
0039     &:last-child {
0040         border-bottom: none;
0041     }
0042 }
0043 
0044 .sl-date {
0045     font-size: 10px;
0046     color: $gray-500;
0047 }
0048 
0049 .time-item {
0050     border-color: $border-color;
0051     padding-bottom: 1px;
0052     position: relative;
0053     &:before {
0054         content: " ";
0055         display: table;
0056     }
0057     &:after {
0058         background-color: $white;
0059         border-color: $border-color;
0060         border-radius: 10px;
0061         border-style: solid;
0062         border-width: 2px;
0063         bottom: 0;
0064         content: '';
0065         height: 14px;
0066         left: 0;
0067         margin-left: -8px;
0068         position: absolute;
0069         top: 5px;
0070         width: 14px;
0071     }
0072 }
0073 
0074 .time-item-item {
0075     &:after {
0076         content: " ";
0077         display: table;
0078     }
0079 }
0080 
0081 .item-info {
0082     margin-bottom: 15px;
0083     margin-left: 15px;
0084     p {
0085         margin-bottom: 10px !important;
0086     }
0087 }
0088 
0089