2022-05-21 09:23:55 +02:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Snowburst+One&display=swap');
|
|
|
|
|
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
:root {
|
2022-09-08 12:53:09 +02:00
|
|
|
font-family: 'Work Sans', sans-serif;
|
|
|
|
/* --immich-icon-button-hover-color: #d3d3d3; */
|
2022-07-23 20:08:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2022-09-08 12:53:09 +02:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2022-07-23 20:08:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
html::-webkit-scrollbar {
|
2022-09-08 12:53:09 +02:00
|
|
|
width: 8px;
|
2022-07-23 20:08:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Track */
|
|
|
|
html::-webkit-scrollbar-track {
|
2022-09-08 12:53:09 +02:00
|
|
|
background: #f1f1f1;
|
|
|
|
border-radius: 16px;
|
2022-07-23 20:08:49 +02: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 20:08:49 +02: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 09:23:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2022-09-08 12:53:09 +02:00
|
|
|
/* min-height: 100vh; */
|
|
|
|
margin: 0;
|
|
|
|
background-color: #f6f8fe;
|
|
|
|
color: #5f6368;
|
2022-05-21 09:23:55 +02:00
|
|
|
}
|
|
|
|
|
2022-07-26 22:13:08 +02:00
|
|
|
input:focus-visible {
|
2022-09-08 12:53:09 +02:00
|
|
|
outline-offset: 0px !important;
|
|
|
|
outline: none !important;
|
2022-07-26 22:13:08 +02:00
|
|
|
}
|
2022-08-12 21:25:19 +02:00
|
|
|
|
2022-05-21 09:23:55 +02:00
|
|
|
@layer utilities {
|
2022-09-08 12:53:09 +02:00
|
|
|
.immich-form-input {
|
|
|
|
@apply bg-slate-100 p-2 rounded-md focus:border-immich-primary text-sm;
|
|
|
|
}
|
|
|
|
|
|
|
|
.immich-form-label {
|
|
|
|
@apply font-medium text-sm text-gray-500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.immich-btn-primary {
|
|
|
|
@apply bg-immich-primary text-gray-100 border rounded-xl py-2 px-4 transition-all duration-150 hover:bg-immich-primary hover:shadow-lg text-sm font-medium;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 22:55:20 +02:00
|
|
|
|
|
|
|
/* Hidden scrollbar */
|
|
|
|
/* width */
|
|
|
|
.scrollbar-hidden::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
scrollbar-width: none;
|
|
|
|
}
|
2022-07-22 16:44:22 +02:00
|
|
|
}
|