Create css_blocks.py
Browse files- css_blocks.py +31 -0
css_blocks.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
CSS_ELEMENTS = """
|
| 2 |
+
|
| 3 |
+
.analyze_btn {
|
| 4 |
+
background-color: tomato;
|
| 5 |
+
width: 50%;
|
| 6 |
+
max-width: 600px;
|
| 7 |
+
min-width: 200px;
|
| 8 |
+
margin: 0 auto;
|
| 9 |
+
display: block;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
.features_description {
|
| 13 |
+
|
| 14 |
+
flex: 1;
|
| 15 |
+
padding: 1rem;
|
| 16 |
+
border-radius: 8px;
|
| 17 |
+
display: flex;
|
| 18 |
+
flex-direction: column;
|
| 19 |
+
justify-content: center;
|
| 20 |
+
max-height: 460px;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
#app_title {
|
| 24 |
+
text-align: center;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
footer {
|
| 28 |
+
visibility: hidden
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
"""
|