78 lines
1016 B
CSS
78 lines
1016 B
CSS
body
|
|
{
|
|
margin: 0;
|
|
}
|
|
|
|
input
|
|
{
|
|
display: block;
|
|
height:25px;
|
|
border-radius: 12.5px;
|
|
width:440px;
|
|
margin:20px;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
border-color: {{ color }};
|
|
}
|
|
input[type=submit]
|
|
{
|
|
color:white;
|
|
width:460px;
|
|
background-color: {{ color }};
|
|
}
|
|
|
|
.favicon
|
|
{
|
|
display:block;
|
|
margin: 0 auto;
|
|
max-width: 100px;
|
|
}
|
|
.navbar
|
|
{
|
|
color:white;
|
|
height:50px;
|
|
width:100%;
|
|
background-color: {{ color }};
|
|
}
|
|
|
|
#main
|
|
{
|
|
padding-top:20px;
|
|
margin:auto;
|
|
width:500px;
|
|
}
|
|
.eula
|
|
{
|
|
margin-left: 50px;
|
|
}
|
|
|
|
.error
|
|
{
|
|
background-color: #fff0f0;
|
|
border-color: #ff0000;
|
|
}
|
|
|
|
.info
|
|
{
|
|
background-color: #f0f0ff;
|
|
border-color: #0000ff;
|
|
}
|
|
|
|
.message
|
|
{
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-radius: 12.5px;
|
|
width:440px;
|
|
margin:20px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
}
|
|
.count
|
|
{
|
|
text-align: center;
|
|
} |