| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- html, body{
- width: 100%;
- margin: 0;
- height: 100%;
- padding:0;
- top: 0;
- }
- header {
- margin: 0;
- padding: 10px;
- width: 100%;
- height: 55px;
- top: 0;
- border-bottom: 1px solid #001a33;
- background-color: #004280;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- #logo {
- float: left;
- position: absolute;
- top: 3px;
- left: 20px;
- }
- h1 {
- color: white;
- margin: 10px 0;
- }
- #main {
- width: 80%;
- margin: 50px 10%;
- }
- h2 {
- color: #666666;
- }
- #submit-file {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- #submit-form {
- width: 600px;
- display: flex;
- flex-direction: column;
- align-items: center;
- border: 2px solid #0047b3;
- border-radius: 5px;
- box-shadow: 3px 5px 5px rgb(166, 166, 166, 0.5);
- padding: 30px;
- }
- #submit-form label {
- font-size: 1.2em;
- }
- #submit-form input {
- margin-top: 1em;
- font-size: 1em;
- }
- #submit-form button {
- margin-top: 45px;
- font-size: 1.1em;
- }
- .error {
- color: red;
- font-weight: 700;
- }
- .valid {
- color: green;
- }
- .datatable {
- width: 100% !important;
- }
- .annotation {
- color: #595959;
- font-size: 0.9em;
- }
- .please-wait {
- margin-top: 30px;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .form-row {
- display: flex;
- flex-direction: row;
- margin-bottom: 1em;
- justify-content: space-between;
- align-items: center;
- }
- .form-row label {
- margin-right: 1em;
- }
- footer {
- color: #004280;
- width: 100%;
- text-align: center;
- position: fixed;
- height: 50px;
- bottom: 0;
- left: 0;
- right: 0;
- margin: 0;
- background-color: #e6e6e6;
- padding-top: 23px;
- }
|