43 lines
558 B
CSS
43 lines
558 B
CSS
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #FBFBFB;
|
|
}
|
|
|
|
.flex
|
|
{
|
|
display: flex;
|
|
}
|
|
|
|
#error_500
|
|
{
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-content: center;
|
|
height: 100vh;
|
|
line-height: 1.1;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
#error_500 p
|
|
{
|
|
font-size: 16px;
|
|
color: #828282;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
#error_500 .title
|
|
{
|
|
color: #C4C4C4;
|
|
font-size: 65px;
|
|
font-weight: 500;
|
|
line-height: 1.1;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
#error_500 .description
|
|
{
|
|
margin-left: 40px;
|
|
}
|