Simple django app to display links
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
549 B

  1. .button {
  2. /* margin: 25px 50px 75px 100px; */
  3. background-color: white;
  4. color: black;
  5. padding: 15px 32px;
  6. font-size: 16px;
  7. text-align: center;
  8. border: 2px solid #4CAF50; /* Green */
  9. -webkit-transition-duration: 0.2s; /* Safari */
  10. transition-duration: 0.2s;
  11. text-decoration: none;
  12. }
  13. .button:hover {
  14. background-color: #4CAF50; /* Green */
  15. color: white;
  16. }
  17. li.button-div {
  18. background: white;
  19. margin-bottom: 50px;
  20. }
  21. li.button-div:last-child {
  22. margin-bottom: 0px;
  23. }
  24. ul {
  25. list-style-type: none;
  26. }