Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.45 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.       text-align: center;
  56.   }
  57.  
  58.  .medicine-calendar table th,
  59.  .medicine-calendar table td {
  60.     padding: 0;
  61.     width: 10em;
  62.   }
  63.  
  64.   .medicine-calendar table th,
  65.   .medicine-calendar table td.time {
  66.       padding: 10px;
  67.   }
  68.  
  69.   .medicine-calendar tr.days,
  70.   .medicine-calendar td.time {
  71.     background: #002b5c;
  72.     text-transform: uppercase;
  73.     font-size: 0.6em;
  74.     text-align: center;
  75.   }
  76.  
  77.   .medicine-calendar td.time {
  78.     width: 3em !important;
  79.   }
  80.  
  81.  
  82.  .medicine-calendar td .calendar-content-wrapper {
  83.         height: 100%;
  84.         min-height: 20px;
  85.         position: relative;
  86.         overflow: hidden;
  87.         height: 65px;
  88.     }
  89.  
  90.     .medicine-calendar td .calendar-content {
  91.         padding: 10px;
  92.         position: absolute;
  93.         height: 100%;
  94.         overflow: hidden;
  95.         left: 0;
  96.         right: 0;
  97.     }
  98.  
  99.     .medicine-calendar td .calendar-content.half-hour {
  100.         height: 50%;
  101.     }
  102.  
  103.     .medicine-calendar td .calendar-content.top {
  104.         top: 0;
  105.     }
  106.  
  107.     .medicine-calendar td .calendar-content.bottom {
  108.         bottom: 0;
  109.     }
  110.  
  111.     .medicine-calendar td .calendar-content span {
  112.         display: block;
  113.         font-size: 10px !important;
  114.         padding: 1px 0;
  115.     }
  116.  
  117.     .medicine-calendar td .calendar-content span.name {
  118.         white-space: nowrap;
  119.         overflow: hidden;
  120.         text-overflow: ellipsis;
  121.     }
  122.  
  123.     .medicine-calendar td .calendar-content span.local {
  124.         text-transform: uppercase;
  125.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement