mirror of
https://github.com/mgrove36/bbc-young-reporter.git
synced 2026-03-03 11:27:06 +00:00
83 lines
1.4 KiB
CSS
83 lines
1.4 KiB
CSS
/* change theme */
|
|
:root {
|
|
--mdc-theme-primary: #273967;
|
|
--mdc-theme-secondary: #ef6c00;
|
|
}
|
|
|
|
.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label, .mdc-list-item--activated .mdc-list-item__text, .mdc-drawer .mdc-list-item--activated .mdc-list-item__graphic {
|
|
color: var(--mdc-theme-primary);
|
|
}
|
|
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
display: flex;
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
color: var(--mdc-theme-secondary);
|
|
}
|
|
|
|
.mdc-list-group h3 {
|
|
margin: 20px 16px auto 16px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.mdc-drawer-app-content {
|
|
flex: auto;
|
|
overflow: auto;
|
|
}
|
|
|
|
.main-content {
|
|
margin: 15px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.app-bar {
|
|
position: absolute;
|
|
}
|
|
|
|
footer {
|
|
margin: 15px;
|
|
}
|
|
|
|
/* add side margins */
|
|
.main-content {
|
|
margin-left: 15%;
|
|
margin-right: 15%;
|
|
}
|
|
@media screen and (max-width: 600px) {
|
|
.main-content {
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
}
|
|
}
|
|
@media screen and (max-width: 500px) {
|
|
.main-content {
|
|
margin-left: 2%;
|
|
margin-right: 2%;
|
|
}
|
|
}
|
|
|
|
/* for cookie notice */
|
|
#cookies {
|
|
display: none;
|
|
width: 100%;
|
|
position: fixed;
|
|
background: var(--mdc-theme-primary);
|
|
color: var(--mdc-theme-background);
|
|
text-align: center;
|
|
bottom: -100px;
|
|
left: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
#cookies p {
|
|
margin: 10px;
|
|
}
|
|
|
|
#cookies p a {
|
|
color: var(--mdc-theme-secondary);
|
|
text-decoration: none;
|
|
}
|