links.scss 433 B

12345678910111213141516171819202122232425262728293031323334
  1. @import "lib/global";
  2. .links {
  3. width: 800px;
  4. margin: 0 auto;
  5. a {
  6. color: #09f;
  7. text-decoration: none;
  8. &:hover {
  9. opacity: 0.6;
  10. }
  11. }
  12. .full-url {
  13. color: #ddd;
  14. text-shadow: 1px 1px 0 #fff;
  15. }
  16. }
  17. .links h1 {
  18. color: #333;
  19. margin-bottom: 40px;
  20. }
  21. .links ul {
  22. padding: 0;
  23. list-style-type: none;
  24. }
  25. .links ul li {
  26. margin-bottom: 20px;
  27. }