hajime/public/assets/css/error.css
2023-08-12 00:16:32 +02:00

57 lines
1.2 KiB
CSS

html {
height: 100%;
width: 100%;
}
body {
font-family: "Segoe UI", sans-serif;
font-size: 15px;
font-weight: normal;
margin: 0px;
color: #737980;
background: linear-gradient(0deg, #fff, #ededed 100px) #ededed;
}
.maintenanceContainer {
margin: 150px 170px;
text-align: left;
}
.copyrightContainer {
position: fixed;
bottom: 0px;
left: 0px;
right: 0px;
text-align: center;
padding: 5px;
}
h1 {
font-size: 2.5em;
font-weight: lighter;
line-height: 1.2;
margin: 0px;
margin-bottom: 0.5em;
}
button {
line-height: 20px;
padding: 5px;
color: #737980;
border: 1px solid rgba(23,50,77,0.4);
border-radius: 5px;
background: linear-gradient(#fff, rgba(255,255,255,0.1)) #f1f1f1;
box-shadow: 0 1px 1px 0 #fff, inset 0 2px 2px 0 #fff;
text-shadow: 0 1px 1px #fefffe;
}
button:enabled:hover {
background-image: linear-gradient(#fff, rgba(255,255,255,0.6));
cursor: pointer;
}
button:enabled:hover:active {
background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.6));
}
button:disabled {
cursor: not-allowed;
color: rgba(115,121,128,.5);
border-color: rgba(23,50,77,.25);
background-image: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0.1));
text-shadow: 0 1px 1px #fff;
}