BlazorStart/Start/Client/Sass/app.scss

195 lines
3.1 KiB
SCSS
Raw Normal View History

2021-12-09 05:59:43 +00:00
/* Validation */
.valid.modified:not([type=checkbox]) {
outline: 1px solid #26b050;
}
.invalid {
outline: 1px solid red;
}
.validation-message {
color: red;
}
/* Blazor */
#blazor-error-ui {
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
.dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
}
2021-12-09 05:59:43 +00:00
}
/* Spectre's default is no padding */
.container {
padding: 0.4rem;
}
/* The splash screen */
.appLoadingContainer {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.authorizingContainer {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
2021-12-09 05:59:43 +00:00
#sidebar {
display: flex;
flex-direction: column;
#sidebarHeading {
padding: 0.5rem 1.5rem;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
2021-12-09 05:59:43 +00:00
h1 {
margin: 0;
}
}
2021-12-09 05:59:43 +00:00
.nav {
padding: 0.5rem 1.5rem;
}
2021-12-09 05:59:43 +00:00
#sidebarItems {
flex: 1; /* Fill remaining space */
overflow-y: auto;
}
2021-12-09 05:59:43 +00:00
.accountActions {
border-top: solid 1px #dadee4;
2021-12-09 05:59:43 +00:00
.accountName {
font-weight: bold;
margin-bottom: 1em;
}
}
2021-12-09 05:59:43 +00:00
}
.off-canvas .off-canvas-content {
padding: 0;
}
#menuButton .icon {
transform: scale(1.2);
}
#containerTabStrip {
width: 100%;
display: flex;
align-items: center;
#menuButton {
flex: 0 0 auto;
margin-right: 1em;
margin-left: 1em;
2021-12-09 05:59:43 +00:00
.icon {
transform: scale(1.2);
}
}
2021-12-09 05:59:43 +00:00
.containerList {
flex: 1 0 0;
.tab-item a {
padding: .6rem .4rem .6rem .4rem;
}
}
2021-12-09 05:59:43 +00:00
}
#bookmarkGroups {
margin-top: 1em;
margin-left: auto;
margin-right: auto;
max-width: 1280px;
display: grid;
grid-column-gap: 1.25rem;
grid-row-gap: 1.25rem;
@media screen and (max-width: 960px) {
2021-12-09 05:59:43 +00:00
grid-template-columns: repeat(1, 1fr);
padding: 1em;
}
@media screen and (min-width: 960px) {
2021-12-09 05:59:43 +00:00
grid-template-columns: repeat(2, 1fr);
width: 60%;
}
@media screen and (min-width: 1440) {
2021-12-09 05:59:43 +00:00
grid-template-columns: repeat(3, 1fr);
width: 60%;
}
}
.bookmarkGroup {
width: 100%;
.card-header {
padding-top: 0;
}
2021-12-09 05:59:43 +00:00
.card-title {
margin-top: 0.5em;
}
2021-12-09 05:59:43 +00:00
.card-body {
padding: 0;
}
2021-12-09 05:59:43 +00:00
.card-body:last-child {
padding: 0;
}
2021-12-09 05:59:43 +00:00
}
ul.bookmarks {
list-style: none;
margin: 0;
li.noBookmarksItem {
margin-top: 0;
}
2021-12-09 05:59:43 +00:00
}
.addBookmarkGroupButton button {
width: 100%;
margin-top: 0.5em;
}
button.addBookmarkButton {
width: 100%;
}
@media screen and (prefers-color-scheme: dark) {
body {
color: #fafafa;
background-color: #111111;
}
}