Create css_elements.py
Browse files- css_elements.py +14 -0
css_elements.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
css_elements="""
|
| 2 |
+
input[role="listbox"] {
|
| 3 |
+
cursor: pointer !important;
|
| 4 |
+
}
|
| 5 |
+
footer {
|
| 6 |
+
visibility: hidden;
|
| 7 |
+
}
|
| 8 |
+
.python {
|
| 9 |
+
background-color: #306998;
|
| 10 |
+
}
|
| 11 |
+
.cpp {
|
| 12 |
+
background-color: #050;
|
| 13 |
+
}
|
| 14 |
+
"""
|