// Place all the styles related to the search controller here. // They will automatically be included in application.css. // You can use Sass (SCSS) here: http://sass-lang.com/ body { background-color: #E4E4E4; } // .container { // margin: auto; // width: 100%; // } .card { margin-bottom: 12px; background-color: white; border-radius: 8px; box-shadow: 0 0 5px rgba(0,0,0,0.2); transition: 0.3s; } /* On mouse-over, add a deeper shadow */ .card:hover { box-shadow: 0 0 20px rgba(0,0,0,0.4); } .list-group-item:hover { transition: 0.15s; background-color: lightgray; } .list-group-item.selected { background-color: lightgreen; } .schedule-section-card:hover { transition: 0.15s; background-color: red; } .align-vertical { display: flex; align-items: center; } .align-left { display: flex; justify-content: flex-start; align-items: center; } .align-center { display: flex; justify-content: center; align-items: center; } .align-right { display: flex; justify-content: flex-end; align-items: center; } #navbar { margin-top: 8px; margin-bottom: 48px; } #logo { font-size: 24pt; color: black; } .form-control:focus { border-color: transparent; box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.075) inset, 0px 0px 0px rgba(0, 0, 255, 0.5); } #cart { display: none; } .card .small { margin-bottom: 16px; padding: 12px; }