Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1.  
  2. .calendar {
  3. margin: 0 auto;
  4. font-family: 'Roboto', sans-serif;
  5. font-size: 1.2vmax;
  6. width: 80%;
  7. height: 100%;
  8. display: inline-block;
  9. }
  10. .headerrow {
  11. width: 100%;
  12. /* padding: 1vmax 0; */
  13. height: 3vmax;
  14. background-color: MEDIUMAQUAMARINE;
  15. }
  16. .footerrow {
  17. width: 100%;
  18. height: 1.2vmax;
  19. font-size: 0.6vmax;
  20. background-color: transparent;
  21. background-color: #ace5d2;
  22. }
  23. .calbutton {
  24. float: left;
  25. display: inline-block;
  26. width: 20%;
  27. }
  28. .leftbutton, .rightbutton {
  29. font-size: 1.5vmax;
  30. color: rgb(255,255,255);
  31. margin: 5px auto 0;
  32. border-radius: 50%;
  33. box-shadow: 0 0 0 2px rgb(255,255,255); /*border inset*/
  34. width: 2vmax;
  35. height: 2vmax;
  36. transform: scale(1); /* you need a scale here to allow it to transition in both directions */
  37. transition: 0.15s all ease;
  38. -webkit-touch-callout: none; /* iOS Safari */
  39. -webkit-user-select: none; /* Chrome/Safari/Opera */
  40. -khtml-user-select: none; /* Konqueror */
  41. -moz-user-select: none; /* Firefox */
  42. -ms-user-select: none; /* Internet Explorer/Edge */
  43. user-select: none; /* Non-prefixed version, currently */
  44. cursor: default;
  45. }
  46. .calbutton:hover .leftbutton, .calbutton:hover .rightbutton {
  47. transform: scale(1.2);
  48. }
  49. .calendartitle {
  50. color: rgba(1,1,1,0.5);
  51. float: left;
  52. display: inline-block;
  53. width: 60%;
  54. text-align: center;
  55. padding-top: 5px;
  56. }
  57.  
  58.  
  59. .tablecell {
  60. color: rgba(1,1,1,0.5);
  61. padding: 2vmax 0;
  62. float: left;
  63. width: 14.28571428571429%;
  64. box-shadow: 0 0 0 1px rgba(1,1,1, 0.2); /*border inset*/
  65. -webkit-animation:fadein 0.4s;
  66. animation:fadein 0.4s;
  67. }
  68. @-webkit-keyframes fadein{
  69. from{opacity:0} to{opacity:1}
  70. }
  71. @keyframes fadein{
  72. from{opacity:0} to{opacity:1}
  73. }
  74. .blankcell {
  75. color: rgba(1,1,1,0);
  76. padding: 2vmax 0;
  77. float: left;
  78. width: 14.28571428571429%;
  79. }
  80. .currentdate {
  81. background-color: LIGHTSTEELBLUE;
  82. }
  83. .tableday {
  84. color: rgba(1,1,1,0.3);
  85. float: left;
  86. width: 14.28571428571429%;
  87. display: inline-block;
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement