checkbox.min.css
1 year ago
common.css
1 year ago
common.rtl.css
1 year ago
media.css
1 year ago
mobile.css
1 year ago
mobile.rtl.css
1 year ago
restore.css
1 year ago
style.css
1 day ago
vars.css
1 year ago
vars.rtl.css
1 year ago
restore.css
114 lines
| 1 | body { |
| 2 | background-color: #e9ecef; |
| 3 | font-family: Arial, sans-serif; |
| 4 | } |
| 5 | |
| 6 | .status-header { |
| 7 | height: 60px; |
| 8 | font-size: 24px; |
| 9 | color: #fff; |
| 10 | background-color: #343a40; |
| 11 | padding: 15px 20px; |
| 12 | border-radius: 5px 5px 0 0; |
| 13 | max-width: 900px; |
| 14 | margin-left: auto; |
| 15 | margin-right: auto; |
| 16 | display: flex; |
| 17 | align-items: center; |
| 18 | } |
| 19 | |
| 20 | .status-container { |
| 21 | padding: 20px; |
| 22 | border: 1px solid #ced4da; |
| 23 | border-radius: 0 0 5px 5px; |
| 24 | background-color: #fff; |
| 25 | max-width: 900px; |
| 26 | margin-left: auto; |
| 27 | margin-right: auto; |
| 28 | } |
| 29 | |
| 30 | .progress-container { |
| 31 | margin-top: 10px; |
| 32 | display: flex; |
| 33 | align-items: center; |
| 34 | } |
| 35 | |
| 36 | .progress { |
| 37 | height: 30px; |
| 38 | flex: 1; |
| 39 | } |
| 40 | |
| 41 | .progress-bar { |
| 42 | font-size: 16px; |
| 43 | line-height: 30px; |
| 44 | } |
| 45 | |
| 46 | .status-item { |
| 47 | margin-bottom: 15px; |
| 48 | } |
| 49 | |
| 50 | .logo { |
| 51 | margin-left: auto; |
| 52 | margin-right: auto; |
| 53 | display: block; |
| 54 | } |
| 55 | |
| 56 | .footer { |
| 57 | margin-top: 30px; |
| 58 | padding: 10px; |
| 59 | background-color: #343a40; |
| 60 | color: #fff; |
| 61 | text-align: center; |
| 62 | border-radius: 5px; |
| 63 | max-width: 900px; |
| 64 | margin-left: auto; |
| 65 | margin-right: auto; |
| 66 | } |
| 67 | |
| 68 | .form-control { |
| 69 | background-color: #f8f9fa; |
| 70 | border-color: #ced4da; |
| 71 | } |
| 72 | |
| 73 | h5 { |
| 74 | color: #343a40; |
| 75 | font-size: 20px; |
| 76 | margin-bottom: 20px; |
| 77 | } |
| 78 | |
| 79 | label { |
| 80 | font-size: 16px; |
| 81 | color: #495057; |
| 82 | margin-right: 15px; |
| 83 | width: 210px; |
| 84 | } |
| 85 | |
| 86 | .btn { |
| 87 | width: 150px; |
| 88 | } |
| 89 | |
| 90 | .log-container { |
| 91 | background-color: #1e1e1e; |
| 92 | color: #00a67d; |
| 93 | font-family: 'Courier New', Courier, monospace; |
| 94 | padding: 10px; |
| 95 | border-radius: 5px; |
| 96 | height: 200px; |
| 97 | overflow-y: auto; |
| 98 | margin-top: 10px; |
| 99 | white-space: nowrap; |
| 100 | scroll-behavior: smooth |
| 101 | } |
| 102 | |
| 103 | .log-entry { |
| 104 | margin: 0; |
| 105 | line-height: 1.2; |
| 106 | text-align: left; |
| 107 | } |
| 108 | |
| 109 | .details { |
| 110 | display: flex; |
| 111 | justify-content: space-between; |
| 112 | margin-bottom: 20px; |
| 113 | } |
| 114 |