Maker-story / src /styles /main.css
JeCabrera's picture
Upload 13 files
5028e57 verified
/* Layout spacing adjustments */
.block-container {
padding-top: 1rem;
padding-bottom: 5rem;
}
h1 {
margin-top: -2rem;
padding-top: 0.5rem;
}
h4 {
margin-top: 0.5rem;
padding-top: 0rem;
}
/* Button styles */
div.stButton > button {
background-color: #FFCC00;
color: black;
width: 90%;
height: 60px;
font-weight: bold;
font-size: 22px;
text-transform: uppercase;
border: 1px solid #000000;
border-radius: 8px;
display: block;
margin: 0 auto;
}
div.stButton > button:hover {
background-color: #FFD700;
color: black;
}
/* Story output styles */
.story-container {
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-top: 20px;
}
.story-title {
color: #333;
margin-bottom: 15px;
font-size: 1.2em;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
}
.story-content {
white-space: pre-line;
line-height: 1.6;
color: #444;
font-size: 1.1em;
}