1
0
Files
Ubooquity-Simple-Dark-Theme/login/login.css
2025-09-15 21:35:26 +02:00

79 lines
1.5 KiB
CSS

body {
background-color: #1a1a1a;
margin: 0px;
padding: 0px;
font-family: "Arial";
font-size: 20px;
font-weight: bold;
text-align: center;
color: #e0e0e0;
}
a {
color: #cccccc;
text-decoration: none;
outline: none;
}
a img {
border: none;
}
input {
width: 120px;
}
#loginform {
color: #cccccc;
position: relative;
font-family: "Arial";
font-size: 16px;
}
#loginfield, #passwordfield {
margin-left: 15px;
height: 25px;
width: 200px;
border: 1px solid #555555;
color: #e0e0e0;
background-color: #333333;
-moz-box-shadow: 0 2px 4px #000000 inset;
-webkit-box-shadow: 0 2px 4px #000000 inset;
box-shadow: 0 2px 4px #000000 inset;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
#loginfield:focus, #passwordfield:focus {
border: 1px solid #888888;
}
#loginbutton {
font-size: 16px;
background: #555555;
color: #FFF;
border-radius: 15px;
height: 26px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
padding: 1px 0px 1px 0px;
margin-left: 10px;
border: solid 1px #555555;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 1px rgba(0, 0, 0, 0.5);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 1px rgba(0, 0, 0, 0.5);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 1px rgba(0, 0, 0, 0.5);
}
#banner {
top: 0px;
left: 0px;
height: 100px;
width: 100%;
margin-bottom: 60px;
border-bottom: 1px #444444 solid;
background-image: url('{{rootPath}}/theme/common/banner.png');
background-repeat: no-repeat;
background-position: 20px;
}