Add project files.
This commit is contained in:
50
trymymenu/wwwroot/css/site.css
Normal file
50
trymymenu/wwwroot/css/site.css
Normal file
@@ -0,0 +1,50 @@
|
||||
:root {
|
||||
/* Dark theme */
|
||||
--dark-background: #fafafa;
|
||||
--dark-foregeound: #808080;
|
||||
/* Light theme */
|
||||
--light-background: #fafafa;
|
||||
--light-foregeound: #808080;
|
||||
/* Defaults */
|
||||
--current-background: var(--light-background);
|
||||
--current-foreground: var(--light-foregeound);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--current-background: var(--dark-background);
|
||||
--current-foreground: var(--dark-foregeound);
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--current-background);
|
||||
color: var(--current-foreground);
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.bg-brown {
|
||||
background-color: #C4A484;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
html {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
|
||||
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
|
||||
}
|
||||
|
||||
html {
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
Reference in New Issue
Block a user