style.css 831 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* Medium devices (tablets, 768px and up) */
  2. @media (min-width: 768px) {
  3. img {
  4. height: 40%;
  5. width: 100%;
  6. }
  7. /* currently does not seem to work */
  8. /* .gradient-bg {
  9. background: rgb(250,157,111);
  10. background: linear-gradient(0deg, rgba(250,157,111,1) 35%, rgba(253,207,184,1) 79%);
  11. } */
  12. }
  13. body{
  14. background-color: #ffe4e1;
  15. }
  16. /* need to find a link color solution */
  17. a{
  18. color: blue;
  19. }
  20. .hLink{
  21. color: black;
  22. }
  23. .hLink:hover{
  24. color: black;
  25. /* text-decoration: none; */
  26. }
  27. img {
  28. width: 90%;
  29. }
  30. .card {
  31. border: none;
  32. border-radius: 0%;
  33. }
  34. .gradient-bg {
  35. background: rgb(253,207,184);
  36. background: linear-gradient(90deg, rgba(253,207,184,1) 31%, rgba(250,157,111,1) 95%);
  37. }
  38. .default-bg{
  39. background-color: #ffe4e1;
  40. }