|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- @tailwind base;
-
- @tailwind components;
- @tailwind utilities;
-
-
-
- @font-face {
- font-family: 'ag';
- src: url('ApfelGrotezk-Regular.woff') format("woff");
- }
-
- @font-face {
- font-family: 'ag-brukt';
- src: url('ApfelGrotezk-Brukt.woff') format("woff");
- }
-
- @font-face {
- font-family: 'ag-fett';
- src: url('ApfelGrotezk-Fett.woff') format("woff");
- }
-
- @font-face {
- font-family: 'dauphine';
- src: url('Dauphine-Regular.ttf') format("truetype");
- }
-
- @font-face {
- font-family: 'dauphine';
- src: url('Dauphine-Italic.ttf') format("truetype");
- font-style: italic;
- }
-
- @font-face {
- font-family: 'robo';
- src: url('roboto-regular.ttf') format("truetype");
- }
-
- @font-face {
- font-family: 'robo';
- src: url('roboto-italic.ttf') format("truetype");
- font-style: italic;
- }
-
- @font-face {
- font-family: 'cirrus';
- src: url('CirrusCumulus.woff') format("woff");
- }
-
- body {
- font-family: 'dauphine';
- }
-
- strong {
- font-family: 'ag-fett';
- }
- b,strong {
- font-weight: normal !important;
- }
-
- select {
- @apply p-1;
- }
-
-
- .book {
- font-family: 'ag-fett', 'Arial Black';
- }
-
- .tool {
- font-family: 'robo';
- }
- .practice {
- font-family: 'cirrus';
- }
-
- .std-margin {
- @apply p-2;
- }
-
- .cell {
- @apply max-h-[30vh] lg:max-h-none relative;
- @apply overflow-hidden;
- }
- /*
- .cell::after {
- content:'';
- @apply absolute w-full h-[3rem] left-0 bottom-0;
- background-color: red;
- } */
- .cell.size-1 {
- @apply min-w-[30rem];
- }
-
-
- .related {
- @apply w-[6rem] lg:w-[12rem] lg:pl-[4rem] px-2 py-4 lg:p-5 text-right;
- }
-
- .cell-margin {
- @apply p-4;
- }
-
- .block-margin {
- @apply mb-8;
- }
-
- .std-padding {
- @apply p-2;
- }
- .std-padding-x {
- @apply px-2;
- }
-
- .std-grid {
- @apply grid md:grid-cols-2 lg:grid-cols-3;
- }
-
- .cell {
- @apply cell-margin ;
- }
-
- .cell .lead-inner-link {
- @apply relative;
- }
-
- .cell .lead-inner-link::after {
- content: '';
- @apply absolute bottom-0 left-0 w-full h-[3rem] ;
- background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
- }
-
- .cell::before {
- content: '';
- position: absolute;
-
- top: 10px;
- right: 0px;
- width: 2px;
- height: calc(100% - 20px);
- background-color: black;
- }
-
- .cell::after {
- content: '';
- position: absolute;
-
- bottom: 0px;
- left: 8px;
- width: calc(100% - 20px);
- height: 2px;
- background-color: black;
- }
-
- .slash {
- position: relative;
- }
-
- .slash::after {
- content: '';
- position: absolute;
-
- bottom: 0px;
- left: 8px;
- width: calc(100% - 20px);
- height: 3px;
- background-color: black;
- transform-origin: 100% 100%;
- transform: rotate(45deg);
- }
-
- /* .meta {
- transform: rotate(-3.5deg);
- } */
-
- .facts {
- @apply grid lg:grid-cols-2 gap-4;
- }
-
- .facts h3 {
- }
-
- .facts > * {
- @apply lg:max-w-[65ch];
- }
-
- a:hover {
- @apply opacity-90;
- }
- a.link:hover {
- @apply opacity-100;
- }
-
-
- h2,h3 {
- hyphens: auto;
- }
-
- h3 {
- font-family: 'ag-fett';
- }
-
- .huge-title {
- @apply text-2xl lg:text-5xl;
- }
- .big-title {
- @apply text-lg lg:text-4xl;
- }
- .medium-title {
- @apply text-xl lg:text-3xl;
- }
- .small-title {
- @apply text-lg lg:text-2xl;
- }
- .big-text {
- @apply text-base lg:text-xl ;
- }
- .small-text {
- @apply text-base;
- }
-
- .indent {
- @apply mx-4 my-4;
- }
-
- .text > h3 {
- @apply ml-6 mt-8 ;
- }
-
- h2 + *,
- h3 + * {
- /* @apply ml-6 mt-1; */
- }
-
-
- p + p {
- @apply mt-[1em];
- }
-
- .loading {
-
- }
-
- /* .loading .bg-white {
- @apply bg-white/90;
- opacity: 0;
- transform: opacity 0.2s;
- }
-
- .htmx-request .bg-white {
- opacity: 1;
- } */
-
- .loading .bg {
- opacity: 0;
- background-image: linear-gradient(to top, rgb(103, 48, 255,0.8), rgb(255, 255, 255, 0),rgb(255, 255, 255, 0));
-
- }
-
- .htmx-request .loading .bg {
- transition: opacity 4000ms ease;
- /* transition: opacity 4000ms cubic-bezier(.16, .01, .31, .99); */
- opacity: 1;
-
- }
-
- .loading .spinner .inner {
- opacity:0;
- transition: opacity 0.4s ease;
- width:min-content;
- height:min-content;
- /* height:200px; */
- }
- .htmx-request .loading .spinner .inner {
- opacity:1;
- }
-
-
- #modal-content main {
- opacity: 1;
- }
- .htmx-request #modal-content main {
- /* transition: opacity 0.2s ease; */
- opacity: 0;
- }
-
- .htmx-request .loading {
- opacity: 1;
- }
-
- #modal-content {
- transition: box-shadow 0.3s ease;
- box-shadow: 0 0 4rem rgba(103, 48, 255, 0.8)
- }
-
- .htmx-request #modal-content {
- box-shadow: 0 0 4rem rgba(103, 48, 255, 0.0)
- }
-
- .active {
- @apply bg-expurple text-white;
- /* background-image: linear-gradient(to top, purple, transparent) ; */
- }
-
- .link:hover path,
- .active path {
- stroke: white;
- }
-
- .link:hover rect,
- .active rect {
- fill: white;
- }
-
-
- .link:hover {
- @apply bg-expurple text-white;
- }
-
- details[open]::details-content {
- display: contents;
- }
-
- .text a {
- /* font-family: 'ag-fett'; */
- text-decoration: underline;
- }
-
- #resources.expanded .filter-header::before {
- content:'- ';
- }
- #resources .filter-header::before {
- content:'+ ';
- }
-
- .fade-right {
- @apply relative;
- }
-
- .fade-right::after {
- @apply absolute top-0 right-0 w-16 lg:w-40 h-full pointer-events-none;
-
- content: '';
- background-image: linear-gradient(to left,#fff 0%, #fff 5%, rgba(255,255,255,0) 100%);
-
- }
-
- .menuitem {
- @apply px-4 py-2 link items-center;
- }
-
-
- /* The switch - the box around the slider */
- .switch {
- position: relative;
- display: inline-block;
- width: 60px;
- height: 34px;
- }
-
- /* Hide default HTML checkbox */
- .switch input {
- opacity: 0;
- width: 0;
- height: 0;
- }
-
- /* The slider */
- .slider {
- position: absolute;
- cursor: pointer;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: #000000;
- transition: .4s;
- }
-
- .slider:before {
- position: absolute;
- content: "";
- height: 26px;
- width: 26px;
- left: 4px;
- bottom: 4px;
- background-color: white;
- transition: .4s;
- }
-
- input:checked+.slider {
- background-color: #000000;
- }
-
- input:focus+.slider {
- box-shadow: 0 0 1px #000000;
- }
-
- input:checked+.slider:before {
- transform: translateX(26px);
- }
-
- /* Rounded sliders */
- .slider.round {
- border-radius: 34px;
- }
-
- .slider.round:before {
- border-radius: 50%;
- }
-
- hr {
- border:0;
- border-bottom: 2px solid;
- width:50%;
- margin:4ch;
-
- margin-left:0;
- }
|