Skip to content
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
26 changes: 19 additions & 7 deletions client/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,34 @@
}

body {
background-color: aliceblue;
background-color: #f5f5f5;
}

.main {
margin-left: 450px;
padding: 10px
margin-left: 400px;
padding: 10px;
margin-top: 190px;
}

header {
width: 100%;
position: fixed;
text-align: center;
background-color: rgb(75, 213, 213);
background-color: #94618E;
box-shadow: 0px 0px 4px;
z-index: 1;
}

h1 {
color:#49274A
}

h3 {
color:#49274A
}

.navbar {
background-color: lightgrey;
background-color: #49274A;
display: flex;
align-items: center;
}
Expand Down Expand Up @@ -53,8 +64,9 @@ header {
width: 400px;
height: 80%;
position: fixed;
background-color: rgb(188, 188, 207);
background-color: #F4DECB;
padding: 10px;
padding-top: 200px;
text-align: center;
}

Expand Down Expand Up @@ -99,4 +111,4 @@ tr:hover {background-color: grey;}

tr:nth-child(even) {background-color: #d0d0d0;}

tr:nth-child(even):hover {background-color: grey;}
tr:nth-child(even):hover {background-color: grey;}
4 changes: 2 additions & 2 deletions db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Instrument.destroy_all
InstrumentAssignment.destroy_all

15.times do
30.times do
Musician.create!(
name: Faker::Name.unique.first_name,
rate: Faker::Number.between(from: 15, to: 200),
Expand Down Expand Up @@ -40,7 +40,7 @@
end
puts "done seeding songs"

30.times do
70.times do
InstrumentAssignment.create!(
song_id: Faker::Number.between(from: 1, to: 4),
musician_id: Faker::Number.between(from: 1, to: 15),
Expand Down