mirror of
https://github.com/skidoodle/taj-validator.git
synced 2025-03-05 20:00:40 +01:00
first commit
This commit is contained in:
commit
bba6145d0e
4 changed files with 118 additions and 0 deletions
52
style.css
Normal file
52
style.css
Normal file
|
@ -0,0 +1,52 @@
|
|||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #121212;
|
||||
color: #338ef7;
|
||||
text-align: center;
|
||||
margin-top: 10%;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
form {
|
||||
width: 300px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
label,
|
||||
input {
|
||||
display: block;
|
||||
margin: 10px 0;
|
||||
color: #338ef7;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
border: 1px solid #338ef7;
|
||||
border-radius: 5px;
|
||||
background-color: #333;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: #338ef7;
|
||||
color: #efefef;
|
||||
border: none;
|
||||
margin-top: 15px;
|
||||
padding: 10px 20px;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
input::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
input[type='number'] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue