File size: 2,112 Bytes
5a831ce 5a9a4db c8438da 5a831ce 48cc36d c8438da 48cc36d c8438da 48cc36d 821c442 48cc36d c8438da 52cbd7e 9432794 821c442 9432794 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
/* Main container styling */
.block-container {
padding-top: 1rem;
padding-bottom: 5rem;
}
/* Title spacing */
h1 {
margin-top: -2rem;
padding-top: 0.5rem;
}
/* Subtitle spacing */
h4 {
margin-top: 0.5rem;
padding-top: 0rem;
}
/* Custom button styling */
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;
}
/* Results container */
.results-container {
border: 1px solid #000000;
padding: 15px;
border-radius: 8px;
background-color: #ffffff;
margin-bottom: 20px;
}
/* Email content styling */
.results-container p {
font-size: 1rem;
line-height: 1.5;
white-space: pre-wrap;
}
/* Email heading */
.results-container h4 {
font-size: 1.2rem;
margin-bottom: 15px;
color: #333;
}
/* Ensure P.D. and all text has consistent size */
.results-container p strong,
.results-container p b,
.results-container p em,
.results-container p i {
font-size: 1rem;
}
/* Download button styling - updated to green gradient */
.stDownloadButton button {
background: linear-gradient(to right, #4CAF50, #45a049);
color: white;
font-weight: bold;
border: none;
width: 80%;
margin: 20px auto; /* Add top and bottom margin */
display: block;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
/* Download button hover effect */
.stDownloadButton button:hover {
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
/* Download button click animation */
.stDownloadButton button:active {
transform: scale(0.95);
}
/* Results container styling */
.results-container {
margin-bottom: 20px;
padding: 15px;
border-radius: 5px;
background-color: #f8f9fa;
}
|