Skip to content

Delete styles.css #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/assets/stylesheets/application.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
* It is generally better to create a new file per style scope.
*
*= require_self
*/
*/
1 change: 1 addition & 0 deletions app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
class ApplicationController < ActionController::Base
# layout "application"
end
Binary file added db/development.sqlite3
Binary file not shown.
Empty file added db/test.sqlite3
Empty file.
10 changes: 6 additions & 4 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,31 @@
<head>
<title>Rock-Paper-Scissors Rules</title>

<link rel="stylesheet" href="/styles.css">
<!-- Expand the number of characters we can use in the document beyond basic ASCII 🎉 -->
<meta charset="utf-8">
</head>

<body>
<div class="row">
<div>
<a href="/rock">
<a class="button" href="/rock">
Play Rock
</a>
</div>

<div>
<a href="/paper">
<a class="button" href="/paper">
Play Paper
</a>
</div>

<div>
<a href="/scissors">
<a class="button" href="/scissors">
Play Scissors
</a>
</div>

</div>
<h1>
Welcome to Rock-Paper-Scissors!
</h1>
Expand Down