ashish6318 commited on
Commit
d98002c
·
verified ·
1 Parent(s): 8306c48

Upload styles.css

Browse files
Files changed (1) hide show
  1. 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;}