neutral-response/static/assets/main.css
2022-09-16 21:37:11 -04:00

42 lines
477 B
CSS

body {
background: black;
color: white;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
a {
color: #b4b4b4;
}
a:hover,
a:focus {
color: white;
}
.bar-wrapper {
padding: 8px;
margin: 0;
}
.bar.show {
display: block !important;
}
.bar:not(.show) {
display: none !important;
}
.bar {
background: red;
width: 100%;
height: 5px;
}
.barInner {
background: green;
width: 0%;
height: 5px;
transition: width 0.5s;
}