25 lines
988 B
CSS
25 lines
988 B
CSS
html,body {
|
|
background-color:#303030;
|
|
color:#CCCCCC;
|
|
margin:0;
|
|
font-family: "Lato", sans-serif;
|
|
}
|
|
.center {max-width: fit-content; margin: auto;}
|
|
h1{color:#CCCCCC;}
|
|
h2{color:#CCCCCC;}
|
|
h3{
|
|
color:#CCCCCC;
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
}
|
|
input,button{background-color: #555555; color: #CCC;}
|
|
.form-button{background-color: #555555; color: #CCC; border-width:1px; border-style:solid; border-color:grey; margin-top: 8px;}
|
|
select{background-color: #555555; color: #CCC;}
|
|
.form-center{text-align:center;}
|
|
.form-element{display:flex;}
|
|
.form-input{border-width:1px; border-style:solid; border-color:grey; width:100%; font-family:arial; margin:2px; padding-left:2px;}
|
|
.form-error{border-width:1px; border-style:solid; border-color:red; width:100%; font-family:arial; margin:2px; padding-left:2px;}
|
|
.form-submit{color:#4caf50; font-family:arial; margin:2px;}
|
|
.left{text-align: left;}
|
|
.right{text-align: right;}
|
|
.click{cursor: pointer; text-decoration: underline;} |