From e6a0ed540c348e6951b48027054a1ac74e2dd857 Mon Sep 17 00:00:00 2001 From: Kazuki Date: Fri, 5 Jun 2020 17:58:37 +0900 Subject: [PATCH] =?UTF-8?q?=E9=87=91=E3=83=8F=E3=83=B3=E3=83=89=E3=83=AB?= =?UTF-8?q?=E3=81=A8=E9=80=9A=E5=B8=B8=E3=83=8F=E3=83=B3=E3=83=89=E3=83=AB?= =?UTF-8?q?=E3=81=8C=E5=85=A5=E3=82=8C=E6=9B=BF=E3=82=8F=E3=81=A3=E3=81=A6?= =?UTF-8?q?=E3=82=8B=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3=E3=80=81UI?= =?UTF-8?q?=E3=81=AE=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/characterTable.html | 24 ++++++++++++++++++++- src/index.html | 48 ++++++----------------------------------- src/package.json | 2 +- src/style.css | 45 +++++++++++++++++++++++++++++++------- 4 files changed, 68 insertions(+), 51 deletions(-) diff --git a/src/characterTable.html b/src/characterTable.html index 288736f..47394fb 100644 --- a/src/characterTable.html +++ b/src/characterTable.html @@ -1 +1,23 @@ - mkwii special character table





①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮





\ No newline at end of file + + + + mkwii special character table + + + + +
+
+
+
+
+
+①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮
+
+
+
+
+
+
+ + \ No newline at end of file diff --git a/src/index.html b/src/index.html index bec51aa..b77e9d5 100644 --- a/src/index.html +++ b/src/index.html @@ -8,53 +8,19 @@ -
+
-
-

Mii name:

-

Creator name:

-
-
-

-

-
+
Mii name:
+
Creator name:
-
-

Mii ID:

-

Console ID:

-
-
-

-

-

-

-
-
-

-

-

-

-
-
-

-

-

-

-
-
-

-

-
+
Mii ID:
---
+
Console ID:
---
-
-

Height

-

Weight

-
-
-

-

-
-
-

-

-
+
Height
+
Weight
diff --git a/src/package.json b/src/package.json index 3d6ebd4..2da3df0 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "appId": "org.kazuki.miiinfoeditor", "name": "mii-info-editor", - "version": "0.0.2", + "version": "0.0.3", "main": "main.js", "devDependencies": { "electron": "8.2.3" diff --git a/src/style.css b/src/style.css index 387066e..cfd2084 100644 --- a/src/style.css +++ b/src/style.css @@ -15,22 +15,51 @@ body{ } .nameForm{ - display:flex; -} + display:grid; + grid-template: + "mn mnt" + "cn cnt"; + gap:10px; + margin-bottom: 10px; +} +#mn{grid-area:mn} +#mnt{grid-area:mnt} +#cm{grid-area:cn} +#cnt{grid-area:cnt} .idForm{ - display:flex; -} -.sliderForm{ - display:flex; -} + display:grid; + grid-template: + "mi mit" + "ci cit"; + gap:10px; + margin-bottom: 10px; +} +#mi{grid-area:mi} +#mit{grid-area:mit} +#ci{grid-area:ci} +#cit{grid-area:cit} +.sliderForm{ + display:grid; + grid-template: + "h hs ht" + "w ws wt"; + gap:10px; +} +#h{grid-area:h} +#hs{grid-area:hs} +#ht{grid-area:ht} +#w{grid-area:w} +#ws{grid-area:ws} +#wt{grid-area:wt} #main{ display:flex; } .subForm{ text-align:center; + margin-left: 30px; } .birthForm{ display:flex; @@ -115,7 +144,7 @@ body{ background-color:black; } -.notSelectColor,.SelectColor,button,#height,#weight{ +.notSelectColor,.SelectColor,button,#height,#weight,#open{ cursor:pointer; }