From 50e098d5cbdfcae916358236dfeb5661a8b645b9 Mon Sep 17 00:00:00 2001 From: Robert Sfarzo Date: Sun, 5 Feb 2023 12:11:09 +0000 Subject: [PATCH 1/4] 1st --- db/development.sqlite3 | Bin 0 -> 20480 bytes db/test.sqlite3 | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 db/development.sqlite3 create mode 100644 db/test.sqlite3 diff --git a/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..555bae3900d670c51d8f03c7c6b5337de487b020 GIT binary patch literal 20480 zcmeI%J#W)M7zgmXytIJSxLbw}oSdbRXydp_QOf|PiV$jOA*4gaU>(U*YT=i1xmaZ^ zU#L?*Og{!pjNCe9@}J`vsXee#>!@| zn*E`b%%JjcU_SZWxM)~ryD#rIoZqZc+hWcO=dQL@`&E>TI0PU70SG_<0uX=z1Rwwb z2>cU)n?ZTK-s$ik$69`lNvbePHK|m_VM1Dtq?XHKm7{()7<9!Tc-`v?cUg)nw%xDv z-4(f1!%L~e$>~6xob`I*egEydpnoooyXVh@o6C4Yvn&%BDw3K;q13K0*C!n%w7uV) zoo`YmS9YQ}rTM0^R{zxDEJ{aoJ^mJ(k_I-4Gc%WgMpFN;>M`Fg$8;x|vHJmcXd zB{EE+FG}htOUDa=(%&!(^HwD%H8v;DYMxa#FVhT4YxT2MQ3(rQ9JUuic5VO2{;D=? zw`n^x2tWV=5P$##AOHafKmY;|fB*zmRp5y&4D0_@eY~g(0uX=z1Rwwb2tWV=5P$## zATSlM@Bg`T%glxb0SG_<0uX=z1Rwwb2tWV=5P-n{A#lp8jYbeqnnx;26H4`na*DGn zJM=w&Z^!d@ypCx5hi&iB-{18Po_hy=@r-@{&z+ylY-kXG00bZa0SG_<0uX=z1Rwwb P2&{@gt=xD#_xHgcq7}=a literal 0 HcmV?d00001 diff --git a/db/test.sqlite3 b/db/test.sqlite3 new file mode 100644 index 0000000..e69de29 From 140bc2c2233ac9a31e54d005d6ae352666a26753 Mon Sep 17 00:00:00 2001 From: Robert Sfarzo Date: Sun, 5 Feb 2023 12:38:08 +0000 Subject: [PATCH 2/4] button css --- app/assets/stylesheets/application.css | 2 +- app/controllers/application_controller.rb | 1 + public/index.html | 7 ++++--- public/styles.css | 16 ++++++++++++++++ 4 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 public/styles.css diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 4738846..ef277d4 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -11,4 +11,4 @@ * It is generally better to create a new file per style scope. * *= require_self - */ + */ \ No newline at end of file diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 09705d1..b49aaaf 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,2 +1,3 @@ class ApplicationController < ActionController::Base + # layout "application" end diff --git a/public/index.html b/public/index.html index e670496..48e0636 100644 --- a/public/index.html +++ b/public/index.html @@ -3,25 +3,26 @@ Rock-Paper-Scissors Rules +
- + Play Rock
- + Play Paper
- + Play Scissors
diff --git a/public/styles.css b/public/styles.css new file mode 100644 index 0000000..8b261b3 --- /dev/null +++ b/public/styles.css @@ -0,0 +1,16 @@ +* { + font-family: Arial, Helvetica, sans-serif; +} +.button { + background-color: #4CAF50; + border: none; + color: white; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + margin: 4px 2px; + cursor: pointer; + border-radius: 12px; +} \ No newline at end of file From 2abe18191d14c839de1b469b90c18537e1254b9c Mon Sep 17 00:00:00 2001 From: Robert Sfarzo Date: Sun, 5 Feb 2023 12:53:18 +0000 Subject: [PATCH 3/4] flex start --- public/index.html | 3 ++- public/styles.css | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index 48e0636..2c3e7f3 100644 --- a/public/index.html +++ b/public/index.html @@ -9,6 +9,7 @@ +

Welcome to Rock-Paper-Scissors!

diff --git a/public/styles.css b/public/styles.css index 8b261b3..56a6f89 100644 --- a/public/styles.css +++ b/public/styles.css @@ -13,4 +13,15 @@ margin: 4px 2px; cursor: pointer; border-radius: 12px; +} +/*****************************/ +.container { + width: 100%; +} +.row { + display: flex; + justify-content: start; +} +.one-third { + width: 32%; } \ No newline at end of file From 4a42d950564e0b300dc4b36b6dcf926163462f91 Mon Sep 17 00:00:00 2001 From: Robert Sfarzo <114509292+rsfarzo@users.noreply.github.com> Date: Sun, 5 Feb 2023 07:27:25 -0600 Subject: [PATCH 4/4] Update index.html --- public/index.html | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/public/index.html b/public/index.html index 2c3e7f3..e670496 100644 --- a/public/index.html +++ b/public/index.html @@ -3,31 +3,29 @@ Rock-Paper-Scissors Rules - - +

Welcome to Rock-Paper-Scissors!