36 lines
468 B
CSS
36 lines
468 B
CSS
|
.error-container {
|
||
|
width: 100%;
|
||
|
margin-top: 4em;
|
||
|
}
|
||
|
|
||
|
.error {
|
||
|
width: 60%;
|
||
|
margin: 0 auto;
|
||
|
text-align: center;
|
||
|
color: #2c3e50;
|
||
|
}
|
||
|
|
||
|
.error-title {
|
||
|
font-family: 'Roboto Slab', serif;
|
||
|
}
|
||
|
|
||
|
.error-icons {
|
||
|
font-size: 5em;
|
||
|
margin-bottom: .25em;
|
||
|
}
|
||
|
|
||
|
.expert {
|
||
|
text-align: left;
|
||
|
padding: 1em;
|
||
|
background-color: black;
|
||
|
color: rgba(0, 255, 0);
|
||
|
border: 2px solid gray;
|
||
|
border-radius: 3px;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 1350px) {
|
||
|
.error {
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|