mirror of
https://github.com/aljazceru/njump.git
synced 2025-12-17 06:14:22 +01:00
29 lines
409 B
CSS
29 lines
409 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
@layer utilities {
|
|
html, body {
|
|
font-size: 18px;
|
|
}
|
|
.imgclip {
|
|
clip-path: url(#svg-shape);
|
|
}
|
|
.gradient {
|
|
mask-image: linear-gradient(
|
|
to bottom,
|
|
rgb(0, 0, 0) 50%,
|
|
rgba(0, 0, 0, 0) 100%
|
|
);
|
|
}
|
|
|
|
@media print {
|
|
@page {
|
|
margin: 2cm 3cm;
|
|
}
|
|
body.safari {
|
|
margin: 1cm 3cm;
|
|
}
|
|
}
|
|
|
|
}
|