Template:Exxos/donate.css: Difference between revisions

From Atari Wiki
Jump to navigation Jump to search
(Created page with "→‎Progress Bar Styles: .progress-bar-container { width: 100%; 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; } body { background-color: lightblue; }")
 
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
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;
Line 15: Line 15:
 
color: white;
 
color: white;
 
border-radius: 10px;
 
border-radius: 10px;
}
 
 
body {
 
background-color: lightblue;
 
 
}
 
}

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;
}