Spaces:
Build error
Build error
Upload styles.css
Browse files- styles.css +16 -0
styles.css
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Changing body color to dark grey and text color to gainsboro(version of white) */
|
2 |
+
body {
|
3 |
+
color: gainsboro;
|
4 |
+
background-color: #333;
|
5 |
+
}
|
6 |
+
|
7 |
+
/* Changing sideline color to light gray and text color to black */
|
8 |
+
.sidebar .sidebar-content {
|
9 |
+
background-color: #c1c1c1;
|
10 |
+
background-image: none;
|
11 |
+
color: black;
|
12 |
+
}
|
13 |
+
|
14 |
+
/* Removing Main Menubar and Footer */
|
15 |
+
#MainMenu {visibility: hidden;}
|
16 |
+
footer {visibility: hidden;}
|