2022-05-21 02:23:55 -05:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
2022-09-16 17:23:31 -05:00
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Work Sans';
|
|
|
|
|
src: url('/fonts/WorkSans-VariableFont_wght.ttf') format('truetype-variations');
|
|
|
|
|
font-weight: 1 999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Snowburst One';
|
|
|
|
|
src: url('/fonts/SnowburstOne-Regular.ttf') format('truetype');
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-21 02:23:55 -05:00
|
|
|
:root {
|
2022-09-08 12:53:09 +02:00
|
|
|
font-family: 'Work Sans', sans-serif;
|
|
|
|
|
/* --immich-icon-button-hover-color: #d3d3d3; */
|
2022-07-23 13:08:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html {
|
2022-09-08 12:53:09 +02:00
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
2022-07-23 13:08:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html::-webkit-scrollbar {
|
2022-09-08 12:53:09 +02:00
|
|
|
width: 8px;
|
2022-07-23 13:08:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Track */
|
|
|
|
|
html::-webkit-scrollbar-track {
|
2022-09-08 12:53:09 +02:00
|
|
|
background: #f1f1f1;
|
|
|
|
|
border-radius: 16px;
|
2022-07-23 13:08:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle */
|
|
|
|
|
html::-webkit-scrollbar-thumb {
|
2022-09-08 12:53:09 +02:00
|
|
|
background: rgba(85, 86, 87, 0.408);
|
|
|
|
|
border-radius: 16px;
|
2022-07-23 13:08:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle on hover */
|
|
|
|
|
html::-webkit-scrollbar-thumb:hover {
|
2022-09-08 12:53:09 +02:00
|
|
|
background: #4250afad;
|
|
|
|
|
border-radius: 16px;
|
2022-05-21 02:23:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2022-09-08 12:53:09 +02:00
|
|
|
/* min-height: 100vh; */
|
|
|
|
|
margin: 0;
|
2022-10-25 21:41:46 -05:00
|
|
|
/* background-color: #f6f8fe; */
|
2022-09-08 12:53:09 +02:00
|
|
|
color: #5f6368;
|
2022-05-21 02:23:55 -05:00
|
|
|
}
|
|
|
|
|
|
2022-07-26 15:13:08 -05:00
|
|
|
input:focus-visible {
|
2022-09-08 12:53:09 +02:00
|
|
|
outline-offset: 0px !important;
|
|
|
|
|
outline: none !important;
|
2022-07-26 15:13:08 -05:00
|
|
|
}
|
2022-08-12 14:25:19 -05:00
|
|
|
|
2022-05-21 02:23:55 -05:00
|
|
|
@layer utilities {
|
2022-09-08 12:53:09 +02:00
|
|
|
.immich-form-input {
|
2022-11-14 23:39:32 -05:00
|
|
|
@apply bg-slate-100 p-2 rounded-md dark:text-immich-dark-bg focus:border-immich-primary text-sm dark:bg-gray-600 dark:text-immich-dark-fg;
|
2022-09-08 12:53:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.immich-form-label {
|
2022-10-26 11:10:48 -05:00
|
|
|
@apply font-medium text-sm text-gray-500 dark:text-gray-300;
|
2022-09-08 12:53:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.immich-btn-primary {
|
2022-10-26 11:10:48 -05:00
|
|
|
@apply bg-immich-primary dark:bg-immich-dark-primary dark:text-immich-dark-gray text-gray-100 border dark:border-immich-dark-gray rounded-xl py-2 px-4 transition-all duration-150 hover:bg-immich-primary dark:hover:bg-immich-dark-primary/90 hover:shadow-lg text-sm font-medium;
|
2022-09-08 12:53:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.immich-text-button {
|
|
|
|
|
@apply flex place-items-center place-content-center gap-2 hover:bg-immich-primary/5 p-2 rounded-lg font-medium;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* width */
|
|
|
|
|
.immich-scrollbar::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Track */
|
|
|
|
|
.immich-scrollbar::-webkit-scrollbar-track {
|
|
|
|
|
background: #f1f1f1;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle */
|
|
|
|
|
.immich-scrollbar::-webkit-scrollbar-thumb {
|
|
|
|
|
background: rgba(85, 86, 87, 0.408);
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle on hover */
|
|
|
|
|
.immich-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: #4250afad;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
}
|
2022-09-09 15:55:20 -05:00
|
|
|
|
|
|
|
|
/* Hidden scrollbar */
|
|
|
|
|
/* width */
|
|
|
|
|
.scrollbar-hidden::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
}
|
2022-07-22 09:44:22 -05:00
|
|
|
}
|