Advertisement
neoxgeforce

Untitled

May 28th, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.43 KB | None | 0 0
  1. $picker-background : rgb(251, 252, 253);
  2. $picker-border-color : rgb(213, 213, 213);
  3. .hidden {
  4.   display : none;
  5. }
  6.  
  7. .period-picker {
  8.   //JUST FOR DEV
  9.   margin-left : 404px;
  10.   margin-top  : 102px;
  11.   //DEV
  12.   position    : relative;
  13.   background  : $picker-background;
  14.   width       : 264px;
  15.   height      : 33px;
  16.   border      : 1px solid $picker-border-color;
  17.   //cursor      : pointer;
  18.  
  19.   &__arrow, &__date {
  20.     display  : inline-block;
  21.     height   : 33px;
  22.     position : absolute;
  23.     top      : 0;
  24.   }
  25.  
  26.   &__date {
  27.     font-size    : 12px;
  28.     color        : darkgray;
  29.     width        : 196px;
  30.     left         : 33px;
  31.     border-left  : 1px solid $picker-border-color;
  32.     border-right : 1px solid $picker-border-color;
  33.     box-sizing   : border-box;
  34.     padding      : 9px 0 0 9px;
  35.  
  36.     & > .fa-calendar-o {
  37.       font-size : 14px;
  38.     }
  39.     &__text {
  40.       padding-left   : 6px;
  41.       text-transform : uppercase;
  42.       font-size      : 12px;
  43.       letter-spacing : 0.3px;
  44.     }
  45.   }
  46.  
  47.   &__arrow {
  48.     position  : absolute;
  49.     width     : 34px;
  50.  
  51.     font-size : 18px;
  52.  
  53.     .fa-caret-left, .fa-caret-right {
  54.       color    : gray;
  55.       position : absolute;
  56.       top      : 8px;
  57.     }
  58.  
  59.     &--left {
  60.       left : 0;
  61.  
  62.       & .fa-caret-left {
  63.         left : 14px;
  64.       }
  65.     }
  66.  
  67.     &--right {
  68.       right : 0;
  69.  
  70.       & .fa-caret-right {
  71.         right : 14px;
  72.       }
  73.     }
  74.   }
  75.  
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement