Skip to content
Snippets Groups Projects
Select Git revision
  • e4083e6d6fb46a598849806725f3f44c691ff530
  • test default
  • main protected
3 results

base.css

Blame
  • base.css 806 B
    @tailwind base;
    @tailwind components;
    @tailwind utilities;
    
    
    @layer base {
      html {
        font-family: "Roboto Condensed", system-ui, sans-serif;
      }
    }
    
    
    @layer typography {
        .font-bebas {
            font-family: "Bebas Neue";
        }
    }
    
    @import url("https://gfonts.pirati.cz/css2?family=Bebas+Neue&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
    
    .card {
        box-shadow: 0 3px 1px -2px rgba(221,221,221,.43), 0 2px 2px 0 rgba(221,221,221,.37), 0 1px 5px 0 rgba(221,221,221,.35);
    }
    
    .card:hover {
        transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
        transition-duration: .2s;
        box-shadow: 0 10px 13px -6px rgba(221,221,221,.43), 0 21px 33px 3px rgba(221,221,221,.37), 0 8px 40px 7px rgba(221,221,221,.35);
    }