mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-23 15:32:22 +00:00
001c8f9601
This is part of a general push to demodularize any code that isn't realistically reusable outside resin-cli, to make the codebase easier to manage and understand. Once this is done, we'll deprecate the original module itself. Change-Type: patch
61 lines
779 B
CSS
61 lines
779 B
CSS
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
text-align: center;
|
|
background-color: #fff;
|
|
color: rgb(24, 24, 24);
|
|
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
position: relative;
|
|
}
|
|
|
|
.center {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
width: 50%;
|
|
height: 50%;
|
|
}
|
|
|
|
.icon {
|
|
display: block;
|
|
width: 40px;
|
|
height: 45px;
|
|
margin: 0 auto;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
margin: 0;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
p {
|
|
color: rgb(99, 99, 99);
|
|
font-size: 1.1rem;
|
|
margin: 0;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
a.button {
|
|
padding: 15px 25px;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a.button.danger {
|
|
background-color: rgb(235, 110, 111);
|
|
color: #fff;
|
|
}
|
|
|
|
a.button.normal {
|
|
background-color: rgb(252, 191, 44);
|
|
color: #fff;
|
|
}
|