Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. .MMM-MyCalendar {
  2. max-width: 500px;
  3. }
  4.  
  5. .MMM-MyCalendar .symbol {
  6. padding-left: 0;
  7. padding-right: 10px;
  8. font-size: 80%;
  9. }
  10.  
  11. .MMM-MyCalendar .symbol span {
  12. display: inline-block;
  13. -ms-transform: translate(0, 2px); /* IE 9 */
  14. -webkit-transform: translate(0, 2px); /* Safari */
  15. transform: translate(0, 2px);
  16. }
  17.  
  18. .MMM-MyCalendar .title {
  19. padding-left: 0;
  20. padding-right: 0;
  21. }
  22.  
  23. .MMM-MyCalendar .time {
  24. padding-left: 30px;
  25. text-align: right;
  26. }
  27.  
  28.  
  29. .MMM-MyCalendar table {
  30. table-layout: fixed;
  31. border-collapse:collapse;
  32. width: 100%;
  33. }
  34.  
  35. .MMM-MyCalendar table td {
  36. line-height: 1.75;
  37. }
  38.  
  39. .MMM-MyCalendar table tr {
  40. border-bottom: solid 1px #222;
  41. }
  42.  
  43.  
  44. .MMM-MyCalendar .calendar-event {
  45. position: relative;
  46. }
  47.  
  48. .MMM-MyCalendar .title {
  49. color: #FFF;
  50. white-space: nowrap;
  51. text-overflow: ellipsis;
  52. overflow: hidden;
  53. display: block;
  54. line-height: 1.25;
  55. margin-top: 4px;
  56. }
  57. .MMM-MyCalendar .time,
  58. .MMM-MyCalendar .location {
  59. color: #AAA;
  60. white-space: nowrap;
  61. display: block;
  62. font-size: 17px;
  63. line-height: 1.5;
  64. text-align: left;
  65. padding-left: 0;
  66. margin-bottom: 2px;
  67. font-weight: 400;
  68. overflow: hidden;
  69. text-overflow: ellipsis;
  70. }
  71.  
  72. .MMM-MyCalendar .calendar-event.with-symbol .title,
  73. .MMM-MyCalendar .calendar-event.with-symbol .time,
  74. .MMM-MyCalendar .calendar-event.with-symbol .location {
  75. margin-left: 30px;
  76. }
  77.  
  78.  
  79. .MMM-MyCalendar .symbol {
  80. font-size: 14px;
  81. display: block;
  82. position: absolute;
  83. top: 2px;
  84. font-weight: bold;
  85. text-align: center;
  86. width: 24px;
  87. height: 24px;
  88. padding-top: 6px;
  89. }
  90.  
  91. .MMM-MyCalendar .symbol span {
  92. display: block;
  93. font-size: 24px;
  94. position: absolute;
  95. top: 1px;
  96. left: 0px;
  97. font-weight: normal;
  98. }
  99.  
  100. .MMM-MyCalendar .symbol .calendar-icon {
  101. width: 24px;
  102. height: 24px;
  103. position: absolute;
  104. top: 3px;
  105. left: 0px;
  106. fill: currentColor;
  107. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement