styles.scss 362 B

12345678910111213141516171819202122
  1. /* use this to put borders around things... */
  2. .thin_border {
  3. border: 1px solid black;
  4. }
  5. .greenlink:hover {
  6. background-color: #67b168;
  7. color: white;
  8. text-decoration: none;
  9. }
  10. /* use this to put borders around things... */
  11. .crop-img {
  12. margin-bottom: 10px;
  13. max-height: 150px;
  14. max-width: 100%;
  15. }
  16. .large-img {
  17. margin-top: 10px;
  18. max-width: 100%;
  19. }