Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. $headerPadding: 0.5rem 1rem
  2. $headerBorderWidth: 1px
  3. $headerBorderStyle: solid
  4. $headerBorderColor: #aaaaaa
  5. $headerBackground: #ff7a58
  6. $headerColor: white
  7.  
  8. $weekdayPadding: 0.4rem 0
  9. $weekdayColor: #7a7a7a
  10. $weekdayBorderWidth: 1px
  11. $weekdayBorderStyle: solid
  12. $weekdayBorderColor: #aaaaaa
  13. $weekdayBackground: #eaeaea
  14.  
  15. $dayBorder: solid 1px #aaaaaa
  16. $dayBackground: white
  17. $dayWidth: 14.2857%
  18. $dayHeight: 50px
  19.  
  20. $fontFamily: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif
  21.  
  22. *
  23. box-sizing: border-box
  24.  
  25. #app
  26. font-family: $fontFamily
  27.  
  28. .calendar
  29. display: flex
  30. flex-direction: column
  31. background: transparent
  32. margin: 10px
  33.  
  34. .header
  35. display: flex
  36. justify-content: stretch
  37. align-items: center
  38. color: $headerColor
  39. padding: $headerPadding
  40. border-width: $headerBorderWidth
  41. border-style: $headerBorderStyle
  42. border-color: $headerBorderColor
  43. background-color: $headerBackground
  44.  
  45. =pointer()
  46. cursor: pointer
  47. &:hover
  48. color: #dcdcdc
  49.  
  50. .arrow
  51. +pointer
  52. padding: 0 0.4em 0.3em 0.4em
  53. font-size: 1.8rem
  54. font-weight: 500
  55. user-select: none
  56. flex-grow: 0
  57.  
  58. .title
  59. +pointer
  60. flex-grow: 1
  61. font-size: 1.2rem
  62. text-align: center
  63.  
  64. .weekdays
  65. display: flex
  66. flex: auto
  67.  
  68. .weekday
  69. width: $dayWidth
  70. display: flex
  71. justify-content: center
  72. align-items: center
  73. padding: $weekdayPadding
  74. color: $weekdayColor
  75. border-width: $weekdayBorderWidth
  76. border-style: $weekdayBorderStyle
  77. border-color: $weekdayBorderColor
  78. background-color: $weekdayBackground
  79. box-sizing: border-box
  80.  
  81. .week
  82. display: flex
  83.  
  84. .day
  85. width: $dayWidth
  86. height: $dayHeight
  87. display: flex
  88. justify-content: center
  89. align-items: center
  90. background-color: $dayBackground
  91. border: $dayBorder
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement