index.css 912 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. body {
  2. background: #fff;
  3. font-family: 'Raleway', sans-serif;
  4. font-size: 42px;
  5. font-weight: 300;
  6. }
  7. form {
  8. text-align: center;
  9. }
  10. #url {
  11. font-family: 'Raleway', sans-serif;
  12. font-size: 32px;
  13. font-weight: 300;
  14. width: 600px;
  15. margin: 0 auto;
  16. padding: 25px;
  17. color: #999;
  18. border-radius: 4px;
  19. border: 1px solid #ccc;
  20. outline: none;
  21. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  22. }
  23. #url:focus {
  24. border: 1px solid #09f;
  25. }
  26. #url::-webkit-input-placeholder {
  27. color: #ddd;
  28. }
  29. #url::-moz-placeholder {
  30. color: #ddd;
  31. }
  32. #cmp {
  33. background-color: #eee;
  34. padding: 25px;
  35. width: 560px;
  36. margin: 0 auto;
  37. text-align: left;
  38. font-size: 21px;
  39. transition: transform 200ms ease-in-out;
  40. transform: scaleY(0);
  41. transform-origin: top center;
  42. border-bottom-left-radius: 4px;
  43. border-bottom-right-radius: 4px;
  44. border: 1px solid #ccc;
  45. }
  46. #cmp > a {
  47. color: #09f;
  48. text-decoration: none;
  49. }