Update GCSE CS blog

This commit is contained in:
Matthew Grove
2018-12-07 13:38:12 +00:00
parent 7695f54ac6
commit bf02130a75
8 changed files with 162 additions and 64 deletions

View File

@@ -1,4 +1,7 @@
/* Reading School 2018, CSS*/
.carousel-inner {
height: 500px;
}
.carousel-inner .item {
height: 100%;
}
@@ -7,30 +10,34 @@
border: none;
height: 100%;
}
.carousel-indicators {
background: black;
.carousel-indicators li {
border: 1px solid var(--mdc-theme-secondary);
}
.mdc-top-app-bar--fixed-adjust {
.carousel-indicators .active {
background-color: var(--mdc-theme-secondary);
}
.presentation-button-left {
float: left;
}
.presentation-button-right {
float: right;
}
#main-content {
text-align: left;
margin: 0 15%;
margin: 20px 15%;
}
@media screen and (max-width: 1000px) {
.mdc-top-app-bar--fixed-adjust {
margin: 0 10%;
#main-content {
margin: 20px 10%;
}
}
@media screen and (max-width: 800px) {
.mdc-top-app-bar--fixed-adjust {
margin: 0 5%;
#main-content {
margin: 20px 5%;
}
}
@media screen and (max-width: 600px) {
.mdc-top-app-bar--fixed-adjust {
margin: 0 2%;
}
}
@media screen and (max-width: 400px) {
.mdc-top-app-bar--fixed-adjust {
margin: 0 1%;
#main-content {
margin: 20px;
}
}