Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. .information {
  2. display: flex;
  3. float: middle;
  4. text-align: center;
  5. vertical-align: center;
  6. width: 100%;
  7. height: auto;
  8. justify-content: center;
  9. }
  10.  
  11.  
  12. a {
  13. font-family: 'Roboto';
  14. text-decoration: none;
  15. margin: 1%;
  16. padding: 1%;
  17. width: 15%;
  18. cursor: pointer;
  19. background: white;
  20. text-decoration: none;
  21. color: SALMON;
  22. border: 3px solid SALMON;
  23. }
  24.  
  25. .calendar {
  26. margin: 0 auto;
  27. font-family: 'Roboto', sans-serif;
  28. font-size: 1.2vmax;
  29. width: 90%;
  30. height: 100%;display: inline-block;
  31. }
  32. .headerrow, .footerrow {
  33. width: 100%;
  34. padding: 1vmax 0;
  35. height: 4vmax;
  36. background-color: MEDIUMAQUAMARINE;
  37. }
  38. .footerrow {
  39. background-color: transparent;
  40. }
  41. .calbutton {
  42. float: left;
  43. display: inline-block;
  44. width: 20%;
  45. }
  46. .leftbutton, .rightbutton {
  47. font-size: 3vmax;
  48. color: rgb(255,255,255);
  49. margin: auto;
  50. border-radius: 50%;
  51. box-shadow: 0 0 0 2px rgb(255,255,255); /*border inset*/
  52. width: 4vmax;
  53. height: 4vmax;
  54. transform: scale(1); /* you need a scale here to allow it to transition in both directions */
  55. transition: 0.15s all ease;
  56.  
  57. -webkit-touch-callout: none; /* iOS Safari */
  58. -webkit-user-select: none; /* Chrome/Safari/Opera */
  59. -khtml-user-select: none; /* Konqueror */
  60. -moz-user-select: none; /* Firefox */
  61. -ms-user-select: none; /* Internet Explorer/Edge */
  62. user-select: none; /* Non-prefixed version, currently */
  63. cursor: default;
  64. }
  65. .calbutton:hover .leftbutton, .calbutton:hover .rightbutton {
  66. transform: scale(1.2);
  67. }
  68.  
  69. .monthtitle, .yeartitle {
  70. color: rgba(1,1,1,0.5);
  71. float: left;
  72. display: inline-block;
  73. width: 29%;
  74. text-align: right;
  75. height: 4vmax;
  76. padding-top: 1vmax;
  77. padding-right: 1%;
  78. }
  79. .yeartitle {
  80. text-align: left;
  81. padding-right: 0;
  82. padding-left: 1%;
  83. }
  84. .body {
  85. width: 100%;
  86. display: inline-block;
  87. }
  88.  
  89. .tablecell {
  90. color: rgba(1,1,1,0.5);
  91. padding: 2vmax 0;
  92. float: left;
  93. width: 12.5%;
  94. /* display: inline-block; */
  95. box-shadow: 0 0 0 1px rgba(1,1,1, 0.2); /*border inset*/
  96. }
  97. .currentdate {
  98. background-color: LIGHTSTEELBLUE;
  99. }
  100. .startdate, .returndate {
  101. -webkit-box-shadow: inset 0px 12px 28px 0px rgba(0,0,0,0.75);
  102. -moz-box-shadow: inset 0px 12px 28px 0px rgba(0,0,0,0.75);
  103. box-shadow: inset 0px 12px 28px 0px rgba(0,0,0,0.75);
  104. }
  105. .startdate {
  106. background-color: MEDIUMSEAGREEN;
  107. }
  108. .returndate {
  109. background-color: BROWN;
  110. }
  111. .runningdate {
  112. color: rgba(20,20,20,1);
  113. background: repeating-linear-gradient(
  114. 45deg,
  115. SEAGREEN,
  116. SEAGREEN 3px,
  117. transparent 4px,
  118. transparent 12px
  119. );
  120. }
  121. .tableday {
  122. color: rgba(1,1,1,0.5);
  123. padding: 2vmax 0;
  124. float: left;
  125. width: 12.5%;
  126. display: inline-block;
  127. box-shadow: -5px 0px 0px 0px rgba(1,1,1, 0.2), 5px 0px 0px 0px rgba(1,1,1, 0.2); /*border inset*/
  128. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement