ash_hq/assets/css/app.css

139 lines
2.3 KiB
CSS
Raw Normal View History

2022-03-21 17:43:24 +13:00
/* This file is for your main application CSS */
2022-03-26 10:17:01 +13:00
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
2022-03-21 17:43:24 +13:00
2022-03-29 08:47:43 +13:00
@import "syntax.css";
/* Import scoped CSS rules for components */
@import "./_components.css";
2022-03-26 10:17:01 +13:00
.search-hit {
2023-01-31 03:21:42 +13:00
@apply text-primary-light-500 dark:text-primary-dark-300
2022-03-26 10:17:01 +13:00
}
@layer components {
.prose li p { @apply m-0; }
2023-02-21 18:52:45 +13:00
}
2022-03-29 08:47:43 +13:00
2022-03-21 17:43:24 +13:00
/* Alerts and form errors used by phx.new */
.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
2022-03-29 08:47:43 +13:00
2022-03-21 17:43:24 +13:00
.alert-info {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
2022-03-29 08:47:43 +13:00
2022-03-21 17:43:24 +13:00
.alert-warning {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
2022-03-29 08:47:43 +13:00
2022-03-21 17:43:24 +13:00
.alert-danger {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
2022-03-29 08:47:43 +13:00
2022-03-21 17:43:24 +13:00
.alert p {
margin-bottom: 0;
}
2022-03-29 08:47:43 +13:00
2022-03-21 17:43:24 +13:00
.alert:empty {
display: none;
}
2022-03-29 08:47:43 +13:00
2022-03-21 17:43:24 +13:00
.invalid-feedback {
color: #a94442;
display: block;
margin: -1rem 0 2rem;
}
/* LiveView specific classes for your customization */
.phx-no-feedback.invalid-feedback,
.phx-no-feedback .invalid-feedback {
display: none;
}
.phx-click-loading {
opacity: 0.5;
transition: opacity 1s ease-out;
}
2022-03-29 08:47:43 +13:00
.phx-loading {
2022-03-21 17:43:24 +13:00
cursor: wait;
}
.phx-modal {
2022-03-29 08:47:43 +13:00
opacity: 1 !important;
2022-03-21 17:43:24 +13:00
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
2022-03-29 08:47:43 +13:00
background-color: rgba(0, 0, 0, 0.4);
2022-03-21 17:43:24 +13:00
}
.phx-modal-content {
background-color: #fefefe;
margin: 15vh auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.phx-modal-close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.phx-modal-close:hover,
.phx-modal-close:focus {
color: black;
text-decoration: none;
cursor: pointer;
2022-09-08 02:48:10 +12:00
}
/* Prevent scrolling beneath Topbar due to URL fragment */
html {
scroll-padding-top: 8.5rem;
}
@media (min-width: 1280px) {
html {
scroll-padding-top: 5rem;
}
2022-09-08 02:48:10 +12:00
}
html {
scroll-behavior: smooth;
2022-09-08 02:48:10 +12:00
}
/* Ensure dark-mode is applied to native elements, eg scrollbars */
.dark {
color-scheme: dark;
}
/* Constrain sidebar container size to screen height - Topbar height - mobile button height*/
.sidebar-container {
max-height: calc(100vh - 8.5rem);
2022-09-08 02:48:10 +12:00
}
@media (min-width: 1280px) {
/* Constrain sidebar container size to screen height - Topbar height */
.sidebar-container {
max-height: calc(100vh - 5rem);
}
2022-12-21 20:25:09 +13:00
}