Template:Exxos/donate.css: Difference between revisions

From Atari Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
Line 1: Line 1:
 
/* Progress Bar Styles */
 
/* Progress Bar Styles */
 
.progress-bar-container {
 
.progress-bar-container {
width: 100%;
+
width: 400px;
 
background-color: #f3f3f3;
 
background-color: #f3f3f3;
 
border-radius: 10px;
 
border-radius: 10px;

Latest revision as of 15:26, 6 September 2024

/* Progress Bar Styles */
.progress-bar-container {
    width: 400px;
    background-color: #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 25px;
    line-height: 25px;
    background-color: #4CAF50; /* Green color for the progress bar */
    text-align: center;
    color: white;
    border-radius: 10px;
}