ai-written-text-detector / css_blocks.py
MightyOctopus's picture
Create css_blocks.py
5518283 verified
raw
history blame contribute delete
433 Bytes
CSS_ELEMENTS = """
.analyze_btn {
background-color: tomato;
width: 50%;
max-width: 600px;
min-width: 200px;
margin: 0 auto;
display: block;
}
.features_description {
flex: 1;
padding: 1rem;
border-radius: 8px;
display: flex;
flex-direction: column;
justify-content: center;
max-height: 460px;
}
#app_title {
text-align: center;
}
footer {
visibility: hidden
}
"""