commit version 1.1

This commit is contained in:
2025-08-16 06:45:14 -04:00
commit b960c387e5
12 changed files with 576 additions and 0 deletions

25
styles.css Normal file
View File

@@ -0,0 +1,25 @@
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;}