diff --git a/client/src/App.css b/client/src/App.css index f6e6899..4b828b9 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -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; } @@ -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; } @@ -99,4 +111,4 @@ tr:hover {background-color: grey;} tr:nth-child(even) {background-color: #d0d0d0;} -tr:nth-child(even):hover {background-color: grey;} \ No newline at end of file +tr:nth-child(even):hover {background-color: grey;} diff --git a/db/seeds.rb b/db/seeds.rb index c00e005..21305c5 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -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), @@ -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),