a simple url shortener in Go (check it out at qurl.org)
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.

18 lines
1.0 KiB

  1. * { box-sizing: border-box; font-family: Tahoma, Arial, san-serif; font-size: 16px; }
  2. body { background-color: #fff; padding: 0; margin: 32px 16px; }
  3. form { margin-top: 16px; white-space: nowrap; }
  4. a { color: #3b8bba; text-decoration: none; }
  5. a:hover { text-decoration: underline; }
  6. input:focus { outline: 0; }
  7. #c { border: 1px solid #eee; background-color: #fafafa; color: #757575; margin: auto; border-radius: 3px; text-align: justify; padding: 8px 16px; }
  8. #u, #s { border: 1px solid #ccc; display: block; padding: 4px 8px; border-radius: 2px; margin: auto; }
  9. #u { width: 100%; box-shadow: inset 0 1px 3px 0 #ddd; }
  10. #u:focus { border-color: #129fea; }
  11. #s { margin-top: 8px; color: #fff; background-color: #0078e7; border-color: transparent; }
  12. #s:hover { background-image: linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1)); cursor: hover; }
  13. #m { margin-bottom: 16px; }
  14. @media screen and (min-width: 640px) {
  15. #c { max-width: 600px; }
  16. #u, #s { display: inline-block; margin: 0; }
  17. #u { width: 490px; display: inline-block; }
  18. }