Wegwichtel/public/css/bootstrap.css
2026-06-16 16:20:09 +02:00

58 lines
888 B
CSS

html,
body {
min-height: 100%;
margin: 0;
background: #eef4e9;
color: #1f3022;
font-family: system-ui, sans-serif;
}
#bootstrap-screen {
position: fixed;
inset: 0;
z-index: 9999;
display: grid;
place-items: center;
box-sizing: border-box;
padding: 1rem;
}
#bootstrap-screen > section {
width: min(30rem, 100%);
box-sizing: border-box;
padding: 1.5rem;
border-radius: 1rem;
background: #fff;
box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .15);
text-align: center;
}
#bootstrap-screen > section > span {
font-size: 4rem;
}
#bootstrap-progress {
width: 100%;
height: 1.2rem;
}
#bootstrap-steps {
line-height: 1.8;
text-align: left;
}
#bootstrap-steps li.done::marker {
content: "✓ ";
}
#bootstrap-steps li.failed {
color: #8b1e1e;
}
#bootstrap-error {
padding: .75rem;
border-radius: .5rem;
background: #fee;
color: #701010;
}