Skip to content
Snippets Groups Projects
Select Git revision
  • 55e148c887c33524166c95d531350e473ec57b4c
  • test default protected
  • master protected
  • feat/custom-css
  • feat/redesign-improvements-10
  • feat/redesign-improvements-8
  • feat/redesign-fixes-3
  • feat/pirstan-changes
  • feat/separate-import-thread
  • feat/dary-improvements
  • features/add-pdf-page
  • features/add-typed-table
  • features/fix-broken-calendar-categories
  • features/add-embed-to-articles
  • features/create-mastodon-feed-block
  • features/add-custom-numbering-for-candidates
  • features/add-timeline
  • features/create-wordcloud-from-article-page
  • features/create-collapsible-extra-legal-info
  • features/extend-hero-banner
  • features/add-link-to-images
21 results

main-article-preview.mustache

Blame
  • full-calendar.pcss 1.22 KiB
    :root {
      --fc-button-bg-color: #000;
      --fc-button-border-color: #000;
      --fc-button-hover-bg-color: #f9ce05;
      --fc-button-hover-border-color: #f9ce05;
      --fc-button-active-bg-color: #f9ce05;
      --fc-button-active-border-color: #f9ce05;
      --fc-event-bg-color: #fea86a;
      --fc-event-border-color: #fea86a;
      --fc-border-color: #ed9654;
      --fc-today-bg-color: #ed9654;
    }
    
    .fc {
      @apply font-condensed;
    }
    
    .fc-col-header {
      width: 100%!important;
    }
    
    /* Don't underline only when there is no href attribute defined. */
    .fc .fc-col-header-cell-cushion:not([href]),
    .fc .fc-daygrid-day-number:not([href]) {
      @apply no-underline;
    }
    
    .fc .fc-col-header-cell {
      @apply bg-orange-300 p-3 font-alt text-white text-xl capitalize;
    }
    
    .fc .fc-button {
      @apply font-alt rounded-none px-5 py-2 duration-150;
    }
    
    .fc .fc-button:hover:not(:disabled),
    .fc .fc-button:active:not(:disabled){
      @apply text-black;
    }
    
    .fc .fc-event {
      @apply p-1 rounded-none border-none text-sm;
    }
    
    .fc .fc-toolbar-title,
    .fc .fc-today-button {
      @apply capitalize;
    }
    
    .fc .fc-daygrid-day-number {
      @apply font-alt text-3xl text-orange-300;
    }
    
    .fc .fc-multimonth-daygrid .fc-daygrid-day-number {
      @apply text-base;
    }
    
    .fc .fc-day-today .fc-daygrid-day-number {
      @apply text-white;
    }