diff --git a/src/main/webapp/css/my.css b/src/main/webapp/css/my.css index e69de29b..6fab816a 100644 --- a/src/main/webapp/css/my.css +++ b/src/main/webapp/css/my.css @@ -0,0 +1,106 @@ +* { + font-family: "Arial", sans-serif; +} + +body { + margin: 20px; +} + +input, select { + border-radius: 4px; + border: 1px solid; +} + +.players-table { + border: 1px solid; + border-collapse: collapse; +} + +button { + background-color: white; + border: none; +} + +button:hover { + cursor: pointer; +} + + +.pagination-wrapper { + margin: 30px 0; +} + +.pagination__page { + margin-right: 10px; + background-color: white; + border: 1px solid; + border-radius: 4px; +} + +.pagination__page_active { + color: #ff5722; +} + +.accounts-per-page-wrapper { + margin-bottom: 30px; +} + +.cell { + border: 1px solid; + text-align: center; + width: 150px; +} + +.cell_small { + width: 40px; +} + +.cell_auto { + width: auto; +} + +.header-cell { + min-width: 80px; + border: 1px solid; + padding: 5px; +} + +.hidden { + visibility: hidden; +} + +.edit-img { + width: 40px; + height: 40px; +} + +.remove-img { + width: 40px; + height: 40px; +} + +.create-form { + padding: 5px; + border: 1px solid; + border-radius: 4px; + width: 300px; + box-sizing: border-box; +} + +.create-field { + display: flex; + justify-content: space-between; + justify-items: center; + margin-bottom: 10px; +} + +.save-button { + border: 1px solid; + border-radius: 4px; + padding: 4px; + font-size: 24px; + margin-top: 15px; + color: white; + background-color: #2c4de3bd; + width: 100%; +} diff --git a/src/main/webapp/html/my.html b/src/main/webapp/html/my.html index eb66ac55..3b250ae0 100644 --- a/src/main/webapp/html/my.html +++ b/src/main/webapp/html/my.html @@ -3,9 +3,395 @@ RPG +

RPG admin panel

+

Accounts list:

+ +
+ + +
+ + + + + + + + + + + + + + + + +
#NameTitleRaceProfessionLevelBirthdayBannedEditDelete
+ +
+ Pages: + +
+
+

Create new account

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
- \ No newline at end of file + diff --git a/src/main/webapp/img/delete.png b/src/main/webapp/img/delete.png index 6409c366..7cffda5a 100644 Binary files a/src/main/webapp/img/delete.png and b/src/main/webapp/img/delete.png differ diff --git a/src/main/webapp/img/edit.png b/src/main/webapp/img/edit.png index 9561e1d5..4facb6ee 100644 Binary files a/src/main/webapp/img/edit.png and b/src/main/webapp/img/edit.png differ diff --git a/src/main/webapp/img/save.png b/src/main/webapp/img/save.png index f3e56af2..b6f24780 100644 Binary files a/src/main/webapp/img/save.png and b/src/main/webapp/img/save.png differ