diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-08-27 01:05:43 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-08-27 01:05:43 -0700 |
| commit | 53c7ce959b5c72002c5444b7d6e5b458331a4275 (patch) | |
| tree | 1226a3694ea2f840bb6c3353a4ee5282efd43bf0 /style.css | |
Initial commit
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..579a6b3 --- /dev/null +++ b/style.css @@ -0,0 +1,91 @@ +.eorzeadb_link { + color: goldenrod; + text-decoration: none; + position: relative; +} + +.eorzeadb_link:hover { + color: darkgoldenrod; +} + +.no-underline { + color: inherit; + text-decoration: none; +} + +.no-underline:hover { + text-decoration: underline; +} + +.ffxiv-container { + background-color: #1a1a1a; + color: #e2c08d; + padding: 10px; + border: 2px solid #e2c08d; + border-radius: 10px; + font-family: 'Arial', serif; + max-width: 500px; + margin: auto; +} + +.ffxiv-header { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 10px; +} + +.ffxiv-item-icon { + width: 50px; + height: 50px; +} + +.ffxiv-h1 { + font-size: 1.5em; + color: #e2c08d; + margin: 0; +} + +.ffxiv-table { + width: 100%; + border-collapse: collapse; +} + +.ffxiv-button { + background-color: #333; + color: #e2c08d; + border: 1px solid #e2c08d; + padding: 5px; + padding-left: 10px; + padding-right: 10px; + margin-left: 10px; + border-radius: 5px; + cursor: pointer; +} + +.ffxiv-table td { + padding: 5px; + border: 1px solid #e2c08d; +} + +.ffxiv-label { + font-size: 1em; +} + +.ffxiv-value { + font-size: 1em; +} + +.ffxiv-input { + background-color: #333; + color: #e2c08d; + border: 1px solid #e2c08d; + padding: 5px; + border-radius: 5px; + width: 100%; + box-sizing: border-box; +} + +.ffxiv-input::placeholder { + color: #e2c08d; +}
\ No newline at end of file |
