Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.29 KB | None | 0 0
  1.   /* BindTuning Symington Project
  2.   Medicine Calendar - Custom WP */
  3.  
  4.   /* Background Colors */
  5.  
  6.   .medicine-calendar .blue {
  7.     background: #3498db;
  8.   }
  9.  
  10.   .medicine-calendar .purple {
  11.     background: #9b59b6;
  12.   }
  13.  
  14.   .medicine-calendar .green {
  15.     background: #2ecc71;
  16.   }
  17.  
  18.   .medicine-calendar .red {
  19.     background: #e74c3c;
  20.   }
  21.  
  22.   .medicine-calendar .orange {
  23.     background: #f39c12;
  24.   }
  25.  
  26.   .medicine-calendar .gold {
  27.     background: #cf9745;
  28.   }
  29.  
  30.  
  31.   .medicine-calendar *,
  32.   .medicine-calendar *:before,
  33.   .medicine-calendar *:after {
  34.     margin: 0;
  35.     padding: 0;
  36.     border: 0;
  37.     outline: 0;
  38.     box-sizing: border-box;
  39.   }
  40.  
  41.   .medicine-calendar table {
  42.     font-family: "Open Sans", Helvetica;
  43.     color: #efefef;
  44.   }
  45.  
  46.   .medicine-calendar table tr:nth-child(2n) {
  47.     background: #eff0f1;
  48.   }
  49.  
  50.   .medicine-calendar table tr:nth-child(2n + 3) {
  51.     background: #fff;
  52.   }
  53.  
  54.  .medicine-calendar table th,
  55.  .medicine-calendar table td {
  56.     padding: 1em;
  57.     width: 10em;
  58.   }
  59.  
  60.   .medicine-calendar tr.days,
  61.   .medicine-calendar td.time {
  62.     background: #002b5c;
  63.     text-transform: uppercase;
  64.     font-size: 0.6em;
  65.     text-align: center;
  66.   }
  67.  
  68.   .medicine-calendar td.time {
  69.     width: 3em !important;
  70.   }
  71.  
  72.  
  73.  .medicine-calendar td .calendar-content-wrapper {
  74.         height: 100%;
  75.         min-height: 20px;
  76.         position: relative;
  77.         overflow: hidden;
  78.         height: 65px;
  79.     }
  80.  
  81.     .medicine-calendar td .calendar-content {
  82.         padding: 10px;
  83.         position: absolute;
  84.         height: 100%;
  85.         overflow: hidden;
  86.         left: 0;
  87.         right: 0;
  88.     }
  89.  
  90.     .medicine-calendar td .calendar-content.half-hour {
  91.         height: 50%;
  92.     }
  93.  
  94.     .medicine-calendar td .calendar-content.top {
  95.         top: 0;
  96.     }
  97.  
  98.     .medicine-calendar td .calendar-content.bottom {
  99.         bottom: 0;
  100.     }
  101.  
  102.     .medicine-calendar td .calendar-content span {
  103.         display: block;
  104.         font-size: 10px !important;
  105.         padding: 1px 0;
  106.     }
  107.  
  108.     .medicine-calendar td .calendar-content span.name {
  109.         white-space: nowrap;
  110.         overflow: hidden;
  111.         text-overflow: ellipsis;
  112.     }
  113.  
  114.     .medicine-calendar td .calendar-content span.local {
  115.         text-transform: uppercase;
  116.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement