mirror of
https://github.com/araxiaonline/araxiapatch-ts.git
synced 2026-06-13 03:02:23 -04:00
67 lines
1.1 KiB
CSS
67 lines
1.1 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
text-align: center;
|
|
background-color: #fff;
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
|
|
border-radius: 5px;
|
|
position: relative;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.progress-bars {
|
|
text-align: left;
|
|
}
|
|
|
|
.progress-bar {
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.progress-label {
|
|
flex: 1;
|
|
margin-right: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.progress-bar-inner {
|
|
flex: 4;
|
|
}
|
|
|
|
.progressBar {
|
|
width: 100%;
|
|
height: 20px;
|
|
border-radius: 5px;
|
|
background-color: #f0f0f0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progressBar .progress {
|
|
height: 100%;
|
|
background-color: #007bff;
|
|
transition: width 0.3s ease-in-out;
|
|
}
|
|
|
|
.progress-speed {
|
|
flex: 1;
|
|
font-size: 12px;
|
|
text-align: right;
|
|
color: #888;
|
|
}
|
|
|