forked from RiseUP/riseup-squad23
27 lines
610 B
CSS
27 lines
610 B
CSS
.cabecalho-error {
|
|
background-color: #f3616d; /* vermelho forte */
|
|
color: white;
|
|
display: flex;
|
|
align-items: center; /* centraliza verticalmente */
|
|
justify-content: center; /* centraliza horizontalmente */
|
|
padding: 12px 20px;
|
|
margin: 10px;
|
|
border-radius: 8px;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
width: calc(100% - 20px); /* ocupa quase toda a largura da div pai */
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.cabecalho-error-text {
|
|
margin: 0;
|
|
padding-left: 30px; /* espaço para "Erro 404" */
|
|
position: relative;
|
|
}
|
|
|
|
.cabecalho-error-code {
|
|
position: absolute;
|
|
left: 0;
|
|
font-weight: 700;
|
|
}
|