12345678910111213141516171819202122 |
- /* use this to put borders around things... */
- .thin_border {
- border: 1px solid black;
- }
- .greenlink:hover {
- background-color: #67b168;
- color: white;
- text-decoration: none;
- }
- /* use this to put borders around things... */
- .crop-img {
- margin-bottom: 10px;
- max-height: 150px;
- max-width: 100%;
- }
- .large-img {
- margin-top: 10px;
- max-width: 100%;
- }
|