You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

419 lines
6.2KB

  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @font-face {
  5. font-family: 'ag';
  6. src: url('ApfelGrotezk-Regular.woff') format("woff");
  7. }
  8. @font-face {
  9. font-family: 'ag-brukt';
  10. src: url('ApfelGrotezk-Brukt.woff') format("woff");
  11. }
  12. @font-face {
  13. font-family: 'ag-fett';
  14. src: url('ApfelGrotezk-Fett.woff') format("woff");
  15. }
  16. @font-face {
  17. font-family: 'dauphine';
  18. src: url('Dauphine-Regular.ttf') format("truetype");
  19. }
  20. @font-face {
  21. font-family: 'dauphine';
  22. src: url('Dauphine-Italic.ttf') format("truetype");
  23. font-style: italic;
  24. }
  25. @font-face {
  26. font-family: 'robo';
  27. src: url('roboto-regular.ttf') format("truetype");
  28. }
  29. @font-face {
  30. font-family: 'robo';
  31. src: url('roboto-italic.ttf') format("truetype");
  32. font-style: italic;
  33. }
  34. @font-face {
  35. font-family: 'cirrus';
  36. src: url('CirrusCumulus.woff') format("woff");
  37. }
  38. body {
  39. font-family: 'dauphine';
  40. }
  41. strong {
  42. font-family: 'ag-fett';
  43. }
  44. b,strong {
  45. font-weight: normal !important;
  46. }
  47. select {
  48. @apply p-1;
  49. }
  50. .book {
  51. font-family: 'ag-fett', 'Arial Black';
  52. }
  53. .tool {
  54. font-family: 'robo';
  55. }
  56. .practice {
  57. font-family: 'cirrus';
  58. }
  59. .std-margin {
  60. @apply p-2;
  61. }
  62. .cell {
  63. @apply max-h-[30vh] lg:max-h-none relative;
  64. @apply overflow-hidden;
  65. }
  66. /*
  67. .cell::after {
  68. content:'';
  69. @apply absolute w-full h-[3rem] left-0 bottom-0;
  70. background-color: red;
  71. } */
  72. .cell.size-1 {
  73. @apply min-w-[30rem];
  74. }
  75. .related {
  76. @apply w-[6rem] lg:w-[12rem] lg:pl-[4rem] px-2 py-4 lg:p-5 text-right;
  77. }
  78. .cell-margin {
  79. @apply p-4;
  80. }
  81. .block-margin {
  82. @apply mb-8;
  83. }
  84. .std-padding {
  85. @apply p-2;
  86. }
  87. .std-padding-x {
  88. @apply px-2;
  89. }
  90. .std-grid {
  91. @apply grid md:grid-cols-2 lg:grid-cols-3;
  92. }
  93. .cell {
  94. @apply cell-margin ;
  95. }
  96. .cell .lead-inner-link {
  97. @apply relative;
  98. }
  99. .cell .lead-inner-link::after {
  100. content: '';
  101. @apply absolute bottom-0 left-0 w-full h-[3rem] ;
  102. background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  103. }
  104. .cell::before {
  105. content: '';
  106. position: absolute;
  107. top: 10px;
  108. right: 0px;
  109. width: 2px;
  110. height: calc(100% - 20px);
  111. background-color: black;
  112. }
  113. .cell::after {
  114. content: '';
  115. position: absolute;
  116. bottom: 0px;
  117. left: 8px;
  118. width: calc(100% - 20px);
  119. height: 2px;
  120. background-color: black;
  121. }
  122. .slash {
  123. position: relative;
  124. }
  125. .slash::after {
  126. content: '';
  127. position: absolute;
  128. bottom: 0px;
  129. left: 8px;
  130. width: calc(100% - 20px);
  131. height: 3px;
  132. background-color: black;
  133. transform-origin: 100% 100%;
  134. transform: rotate(45deg);
  135. }
  136. /* .meta {
  137. transform: rotate(-3.5deg);
  138. } */
  139. .facts {
  140. @apply grid lg:grid-cols-2 gap-4;
  141. }
  142. .facts h3 {
  143. }
  144. .facts > * {
  145. @apply lg:max-w-[65ch];
  146. }
  147. a:hover {
  148. @apply opacity-90;
  149. }
  150. a.link:hover {
  151. @apply opacity-100;
  152. }
  153. h2,h3 {
  154. hyphens: auto;
  155. }
  156. h3 {
  157. font-family: 'ag-fett';
  158. }
  159. .huge-title {
  160. @apply text-2xl lg:text-5xl;
  161. }
  162. .big-title {
  163. @apply text-lg lg:text-4xl;
  164. }
  165. .medium-title {
  166. @apply text-xl lg:text-3xl;
  167. }
  168. .small-title {
  169. @apply text-lg lg:text-2xl;
  170. }
  171. .big-text {
  172. @apply text-base lg:text-xl ;
  173. }
  174. .small-text {
  175. @apply text-base;
  176. }
  177. .indent {
  178. @apply mx-4 my-4;
  179. }
  180. .text > h3 {
  181. @apply ml-6 mt-8 ;
  182. }
  183. h2 + *,
  184. h3 + * {
  185. /* @apply ml-6 mt-1; */
  186. }
  187. p + p {
  188. @apply mt-[1em];
  189. }
  190. .loading {
  191. }
  192. /* .loading .bg-white {
  193. @apply bg-white/90;
  194. opacity: 0;
  195. transform: opacity 0.2s;
  196. }
  197. .htmx-request .bg-white {
  198. opacity: 1;
  199. } */
  200. .loading .bg {
  201. opacity: 0;
  202. background-image: linear-gradient(to top, rgb(103, 48, 255,0.8), rgb(255, 255, 255, 0),rgb(255, 255, 255, 0));
  203. }
  204. .htmx-request .loading .bg {
  205. transition: opacity 4000ms ease;
  206. /* transition: opacity 4000ms cubic-bezier(.16, .01, .31, .99); */
  207. opacity: 1;
  208. }
  209. .loading .spinner .inner {
  210. opacity:0;
  211. transition: opacity 0.4s ease;
  212. width:min-content;
  213. height:min-content;
  214. /* height:200px; */
  215. }
  216. .htmx-request .loading .spinner .inner {
  217. opacity:1;
  218. }
  219. #modal-content main {
  220. opacity: 1;
  221. }
  222. .htmx-request #modal-content main {
  223. /* transition: opacity 0.2s ease; */
  224. opacity: 0;
  225. }
  226. .htmx-request .loading {
  227. opacity: 1;
  228. }
  229. #modal-content {
  230. transition: box-shadow 0.3s ease;
  231. box-shadow: 0 0 4rem rgba(103, 48, 255, 0.8)
  232. }
  233. .htmx-request #modal-content {
  234. box-shadow: 0 0 4rem rgba(103, 48, 255, 0.0)
  235. }
  236. .active {
  237. @apply bg-expurple text-white;
  238. /* background-image: linear-gradient(to top, purple, transparent) ; */
  239. }
  240. .link:hover path,
  241. .active path {
  242. stroke: white;
  243. }
  244. .link:hover rect,
  245. .active rect {
  246. fill: white;
  247. }
  248. .link:hover {
  249. @apply bg-expurple text-white;
  250. }
  251. details[open]::details-content {
  252. display: contents;
  253. }
  254. .text a {
  255. /* font-family: 'ag-fett'; */
  256. text-decoration: underline;
  257. }
  258. #resources.expanded .filter-header::before {
  259. content:'- ';
  260. }
  261. #resources .filter-header::before {
  262. content:'+ ';
  263. }
  264. .fade-right {
  265. @apply relative;
  266. }
  267. .fade-right::after {
  268. @apply absolute top-0 right-0 w-16 lg:w-40 h-full pointer-events-none;
  269. content: '';
  270. background-image: linear-gradient(to left,#fff 0%, #fff 5%, rgba(255,255,255,0) 100%);
  271. }
  272. .menuitem {
  273. @apply px-4 py-2 link items-center;
  274. }
  275. /* The switch - the box around the slider */
  276. .switch {
  277. position: relative;
  278. display: inline-block;
  279. width: 60px;
  280. height: 34px;
  281. }
  282. /* Hide default HTML checkbox */
  283. .switch input {
  284. opacity: 0;
  285. width: 0;
  286. height: 0;
  287. }
  288. /* The slider */
  289. .slider {
  290. position: absolute;
  291. cursor: pointer;
  292. top: 0;
  293. left: 0;
  294. right: 0;
  295. bottom: 0;
  296. background-color: #000000;
  297. transition: .4s;
  298. }
  299. .slider:before {
  300. position: absolute;
  301. content: "";
  302. height: 26px;
  303. width: 26px;
  304. left: 4px;
  305. bottom: 4px;
  306. background-color: white;
  307. transition: .4s;
  308. }
  309. input:checked+.slider {
  310. background-color: #000000;
  311. }
  312. input:focus+.slider {
  313. box-shadow: 0 0 1px #000000;
  314. }
  315. input:checked+.slider:before {
  316. transform: translateX(26px);
  317. }
  318. /* Rounded sliders */
  319. .slider.round {
  320. border-radius: 34px;
  321. }
  322. .slider.round:before {
  323. border-radius: 50%;
  324. }
  325. hr {
  326. border:0;
  327. border-bottom: 2px solid;
  328. width:50%;
  329. margin:4ch;
  330. margin-left:0;
  331. }