face_mask_detect / styles.css
ashish6318's picture
Upload styles.css
d98002c verified
raw
history blame contribute delete
421 Bytes
/* 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;}