Spaces:
Build error
Build error
File size: 421 Bytes
d98002c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
/* Changing body color to dark grey and text color to gainsboro(version of white) */
body {
color: gainsboro;
background-color: #333;
}
/* Changing sideline color to light gray and text color to black */
.sidebar .sidebar-content {
background-color: #c1c1c1;
background-image: none;
color: black;
}
/* Removing Main Menubar and Footer */
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
|