From f596b2287f4647405cb7fcd5f9e059c574a76bdc Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 25 Oct 2024 21:49:17 +0200 Subject: [PATCH] Move css to style.css --- src/static/style.css | 181 ++++++++++++++++++++++++++++++++++++++ src/templates/index.html | 185 +-------------------------------------- 2 files changed, 182 insertions(+), 184 deletions(-) create mode 100644 src/static/style.css diff --git a/src/static/style.css b/src/static/style.css new file mode 100644 index 0000000..b748950 --- /dev/null +++ b/src/static/style.css @@ -0,0 +1,181 @@ +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + display: flex; + justify-content: center; + align-items: center; + font-family: 'Arial', sans-serif; + min-height: 100vh; + background-color: #e9ecef; + color: #343a40; + padding: 20px; +} + +.container { + max-width: 1000px; + width: 100%; + padding: 20px; + background-color: #ffffff; + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); + border-radius: 15px; + overflow: hidden; +} + +h1 { + color: #28a745; + text-align: center; + margin-bottom: 20px; + font-size: 28px; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 1px; +} + +table { + width: 100%; + border-collapse: collapse; + overflow: hidden; +} + +th, td { + padding: 12px; + border-bottom: 1px solid #dee2e6; + text-align: left; + font-size: 16px; + word-wrap: break-word; +} + +th { + background-color: #28a745; + color: white; + font-weight: 500; +} + +tbody tr { + transition: background-color 1.2s ease; +} + +tbody tr:hover { + background-color: #f8f9fa; +} + +.update-btn { + background-color: #28a745; + color: white; + border: none; + padding: 8px 12px; + cursor: pointer; + border-radius: 5px; + transition: background-color 0.3s ease, transform 0.1s ease; + font-size: 14px; + white-space: nowrap; +} + +.update-btn:hover { + background-color: #218838; + transform: scale(1.05); +} + +input[type="url"] { + padding: 8px; + border: 1px solid #ced4da; + border-radius: 5px; + width: calc(100% - 110px); + margin-right: 8px; + box-sizing: border-box; + font-size: 14px; + transition: border-color 0.3s ease; +} + +input[type="url"]:focus { + outline: none; + border-color: #28a745; +} + +.highlight { + background-color: #e0f2f1 !important; +} + +@media (max-width: 768px) { + .container { + padding: 15px; + } + + table, th, td { + font-size: 14px; + } + + h1 { + font-size: 22px; + } + + input[type="url"] { + width: calc(100% - 80px); + } + + .update-btn { + padding: 6px 8px; + } +} + +@media (max-width: 540px) { + h1 { + font-size: 20px; + } + + table { + overflow-x: auto; + white-space: nowrap; + } + + thead { + display: none; + } + + tbody tr { + display: block; + background-color: #fff; + border-radius: 10px; + border: 1px solid #ddd; + margin-bottom: 15px; + padding: 15px; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); + } + + tbody tr td { + display: block; + justify-content: flex-start; + padding: 10px 0; + width: 100%; + } + + tbody tr td::before { + content: attr(data-label); + font-weight: bold; + color: #28a745; + margin-right: 10px; + } + + .update-btn-container { + margin-top: 10px; + display: flex; + justify-content: flex-start; + flex-direction: column; + } + + .update-btn { + padding: 8px 12px; + font-size: 14px; + background-color: #4caf50; + margin-top: 5px; + } + + input[type="url"] { + width: 100%; + margin-bottom: 10px; + } +} \ No newline at end of file diff --git a/src/templates/index.html b/src/templates/index.html index 383f365..44a6920 100644 --- a/src/templates/index.html +++ b/src/templates/index.html @@ -5,190 +5,7 @@ Endpoint Manager - - +