File size: 1,022 Bytes
a90e74c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
body {
padding: 5px 10px 15px 30px;
color: #1F3C88;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: #F6F5F5;
background-image: url("./diamondfire node1.webp");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position-x: center;
}
body {
/*display: flex;
flex-direction: column;*/
}
main {
width: fit-content;
margin: auto;
text-align: center;
}
#table-container {
width: fit-content;
margin: auto;
}
button:hover {
outline: 2px solid lightblue;
cursor:pointer;
}
input[type="text"] {
border: 1px solid #040019;
margin: 1px;
padding: 5px 5px 5px 5px;
border-radius: 4px;
}
input[type="text"]:focus {
border-color: #0a75cd;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.1), 0 0 8px rgba(102, 175, 233, 0.9);
box-shadow: inset 0 1px 1px rgba(0,0,0,.1), 0 0 8px rgba(102, 175, 233, 0.9);
}
/*
Orange: #F3A953
White: #F2F3F3
Lightblue: #366ED8
Blue: #064ACB
*/ |