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/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 0000000..555bae3 Binary files /dev/null and b/db/development.sqlite3 differ diff --git a/db/test.sqlite3 b/db/test.sqlite3 new file mode 100644 index 0000000..e69de29 diff --git a/public/styles.css b/public/styles.css new file mode 100644 index 0000000..56a6f89 --- /dev/null +++ b/public/styles.css @@ -0,0 +1,27 @@ +* { + 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; +} +/*****************************/ +.container { + width: 100%; +} +.row { + display: flex; + justify-content: start; +} +.one-third { + width: 32%; +} \ No newline at end of file