custom_1.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. .custom-calendar-full {
  2. height: 691px;
  3. background: #fff;
  4. border: 1px solid transparent;
  5. border-color: #ebeff6;
  6. border-radius: 4px;
  7. -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
  8. box-shadow: 0 1px 1px rgba(0,0,0,.05);
  9. }
  10. .fc-calendar-container {
  11. height: auto;
  12. width: 100%;
  13. }
  14. .custom-header {
  15. padding: 48px 25px;
  16. height: 115px;
  17. position: relative;
  18. border-bottom: 1px solid #F3F3F4;
  19. background-color: #FBFBFB;
  20. }
  21. .custom-header h2,
  22. .custom-header h3 {
  23. float: left;
  24. font-weight: 300;
  25. text-transform: uppercase;
  26. letter-spacing: 4px;
  27. text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
  28. }
  29. .custom-header h2 {
  30. color: #fff;
  31. width: 60%;
  32. }
  33. .custom-header h2 a,
  34. .custom-header h2 span {
  35. color: rgba(255,255,255,0.3);
  36. font-size: 18px;
  37. letter-spacing: 3px;
  38. white-space: nowrap;
  39. }
  40. .custom-header h2 a {
  41. color: rgba(255,255,255,0.5);
  42. }
  43. .no-touch .custom-header h2 a:hover {
  44. color: rgba(255,255,255,0.9);
  45. }
  46. .custom-header h3 {
  47. width: 40%;
  48. color: #000;
  49. font-weight: 300;
  50. line-height: 30px;
  51. text-align: right;
  52. }
  53. .custom-header nav {
  54. position: absolute;
  55. right: 20px;
  56. top: 49px;
  57. -webkit-touch-callout: none;
  58. -webkit-user-select: none;
  59. -khtml-user-select: none;
  60. -moz-user-select: none;
  61. -ms-user-select: none;
  62. user-select: none;
  63. }
  64. .custom-header nav span {
  65. float: left;
  66. width: 30px;
  67. height: 30px;
  68. position: relative;
  69. color: transparent;
  70. cursor: pointer;
  71. background: #1ABC9C;
  72. margin: 0 1px;
  73. font-size: 20px;
  74. border-radius: 0 3px 3px 0;
  75. }
  76. .custom-header nav span:first-child {
  77. border-radius: 3px 0 0 3px;
  78. }
  79. .custom-header nav span:hover {
  80. background:#1ABC9C;
  81. }
  82. .custom-header span:before {
  83. font-family: 'fontawesome-selected';
  84. color: #fff;
  85. display: inline-block;
  86. text-align: center;
  87. width: 100%;
  88. text-indent: 4px;
  89. }
  90. .custom-header nav span.custom-prev:before {
  91. content: '\25c2';
  92. }
  93. .custom-header nav span.custom-next:before {
  94. content: '\25b8';
  95. }
  96. .custom-header nav span:last-child {
  97. margin-left: 20px;
  98. border-radius: 3px;
  99. }
  100. .custom-header nav span.custom-current:before {
  101. content: '\27a6';
  102. }
  103. .fc-calendar {
  104. width: auto;
  105. top: 10px;
  106. bottom: 20px;
  107. left: 0px;
  108. right: 0px;
  109. height: 514px;
  110. border-radius: 0px;
  111. position: absolute;
  112. }
  113. .fc-calendar .fc-head {
  114. background: rgba(255,255,255,0.2);
  115. color: rgba(255,255,255,0.9);
  116. box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  117. border-radius: 4px 4px 0 0;
  118. height: 40px;
  119. line-height: 40px;
  120. padding: 0 20px;
  121. }
  122. .fc-calendar .fc-head > div {
  123. font-weight: 300;
  124. text-transform: uppercase;
  125. font-size: 14px;
  126. letter-spacing: 3px;
  127. color: #B4B4B4;
  128. }
  129. .fc-calendar .fc-row > div > span.fc-date {
  130. color: #CECDCD;
  131. text-shadow: none;
  132. font-size: 22px;
  133. font-weight: 300;
  134. bottom: auto;
  135. right: auto;
  136. top: 10px;
  137. left: 10px;
  138. text-align: left;
  139. font-family: 'Muli-Regular';
  140. }
  141. .fc-calendar .fc-body {
  142. border: none;
  143. }
  144. .fc-calendar .fc-row {
  145. box-shadow: inset 0 -1px 0 rgba(187, 187, 187, 0.2);
  146. border: none;
  147. }
  148. .fc-calendar .fc-row:last-child {
  149. box-shadow: none;
  150. }
  151. .fc-calendar .fc-row:first-child > div:first-child {
  152. border-radius: 4px 0 0 0;
  153. }
  154. .fc-calendar .fc-row:first-child > div:last-child {
  155. border-radius: 0 4px 0 0;
  156. }
  157. .fc-calendar .fc-row:last-child > div:first-child {
  158. border-radius: 0 0 0 4px;
  159. }
  160. .fc-calendar .fc-row:last-child > div:last-child {
  161. border-radius: 0 0 4px 0;
  162. }
  163. .fc-calendar .fc-row > div {
  164. box-shadow: -1px 0 0 rgba(150, 150, 150, 0.2);
  165. border: none;
  166. padding: 0px;
  167. cursor: pointer;
  168. }
  169. .fc-calendar .fc-row > div:first-child{
  170. box-shadow: none;
  171. }
  172. .fc-calendar .fc-row > div.fc-today,.fc-calendar .fc-row > div:hover {
  173. background: #D95459;
  174. }
  175. .fc-calendar .fc-row > div.fc-today,.fc-calendar .fc-row > div:hover.fc-calendar .fc-row > div > span.fc-date{
  176. color:#fff;
  177. }
  178. .fc-calendar .fc-row > div.fc-today:after {
  179. content: '';
  180. display: block;
  181. position: absolute;
  182. top: 0;
  183. left: 0;
  184. width: 100%;
  185. height: 100%;
  186. opacity: 0.2;
  187. background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.25))), -webkit-gradient(linear, left top, right bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(0.5, rgba(255, 255, 255, .15)), color-stop(0.501, rgba(255, 255, 255, 0)), color-stop(1, rgba(255, 255, 255, 0)));
  188. background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), -moz-linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
  189. background: -o-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), -o-llinear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
  190. background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), -ms-linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
  191. background: linear-gradient(top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.25)), linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
  192. }
  193. .fc-calendar .fc-row > div > div {
  194. margin-top: 35px;
  195. }
  196. .fc-calendar .fc-row > div > div a,
  197. .fc-calendar .fc-row > div > div span {
  198. color: rgba(255,255,255,0.7);
  199. font-size: 12px;
  200. text-transform: uppercase;
  201. display: inline-block;
  202. padding: 3px 5px;
  203. border-radius: 3px;
  204. white-space: nowrap;
  205. overflow: hidden;
  206. text-overflow: ellipsis;
  207. max-width: 100%;
  208. margin-bottom: 1px;
  209. background: rgba(255,255,255,0.1);
  210. }
  211. .no-touch .fc-calendar .fc-row > div > div a:hover {
  212. background: rgba(255,255,255,0.3);
  213. }
  214. @media(max-width:1024px){
  215. .fc-calendar .fc-head > div {
  216. letter-spacing: 0px;
  217. }
  218. }
  219. @media(max-width:768px){
  220. .fc-calendar .fc-head > div {
  221. font-size: 9px;
  222. letter-spacing: 0px;
  223. }
  224. .fc-five-rows .fc-row {
  225. height: 70px;
  226. }
  227. .custom-calendar-full {
  228. height: 491px;
  229. }
  230. .custom-header h3 {
  231. font-size: 16px;
  232. }
  233. .custom-header {
  234. padding: 25px 25px;
  235. height: 88px;
  236. }
  237. .custom-header nav {
  238. top: 29px;
  239. }
  240. }
  241. @media(max-width:640px){
  242. .fc-calendar .fc-head > div {
  243. font-size: 10px;
  244. }
  245. }
  246. @media(max-width:480px){
  247. .fc-calendar .fc-row > div > span.fc-date {
  248. font-size: 15px;
  249. }
  250. .fc-calendar .fc-row > div {
  251. height: 49px;
  252. }
  253. .fc-five-rows .fc-row {
  254. height: 49px;
  255. }
  256. .fc-calendar {
  257. left: 5px;
  258. right: 5px;
  259. }
  260. .custom-header {
  261. padding: 10px;
  262. }
  263. .custom-header h3 {
  264. font-size: 0.8em;
  265. }
  266. .fc-calendar .fc-head {
  267. display: none;
  268. }
  269. .fc-calendar {
  270. height: 245px;
  271. }
  272. .custom-calendar-full {
  273. height: 330px;
  274. }
  275. .custom-header nav {
  276. top: 15px;
  277. }
  278. .custom-calendar-full {
  279. height: 345px;
  280. }
  281. .custom-header {
  282. height: 60px;
  283. }
  284. }
  285. @media(max-width:480px){
  286. .custom-header {
  287. height: 80px;
  288. }
  289. }