From 224daf42a45c510987b2693bcf19532f20ada81e Mon Sep 17 00:00:00 2001 From: tksarah Date: Sat, 4 Jan 2025 12:08:07 +0900 Subject: [PATCH] update style test --- docs/test/index.html | 37 +++++++++++---------- docs/test/styles.css | 77 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 97 insertions(+), 17 deletions(-) create mode 100644 docs/test/styles.css diff --git a/docs/test/index.html b/docs/test/index.html index 6f4177b..d723530 100644 --- a/docs/test/index.html +++ b/docs/test/index.html @@ -3,25 +3,28 @@ ID Search + -

ID Search

-
- - - -
- - - - - - - - - - -
StakerAddressRaw ValueAmount
+
+

ID Search

+
+ + + +
+ + + + + + + + + + +
StakerAddressRaw ValueAmount
+
diff --git a/docs/test/styles.css b/docs/test/styles.css new file mode 100644 index 0000000..29040f0 --- /dev/null +++ b/docs/test/styles.css @@ -0,0 +1,77 @@ +body { + font-family: Arial, sans-serif; + background-color: #f4f4f9; + color: #333; + margin: 0; + padding: 0; +} + +.container { + max-width: 800px; + margin: 50px auto; + padding: 20px; + background: #fff; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + border-radius: 8px; +} + +h1 { + text-align: center; + color: #333; + margin-bottom: 20px; +} + +form { + display: flex; + justify-content: center; + margin-bottom: 30px; +} + +label { + margin-right: 10px; + font-weight: bold; +} + +input[type="file"] { + margin-right: 10px; +} + +button { + background-color: #007bff; + color: white; + border: none; + padding: 10px 20px; + cursor: pointer; + border-radius: 5px; + font-size: 16px; +} + +button:hover { + background-color: #0056b3; +} + +table { + width: 100%; + border-collapse: collapse; + margin-top: 20px; +} + +thead { + background-color: #007bff; + color: white; +} + +th, td { + padding: 12px 15px; + text-align: left; + border-bottom: 1px solid #ddd; +} + +tbody tr:nth-child(even) { + background-color: #f2f2f2; +} + +tbody tr:hover { + background-color: #e9f5ff; +} +