Simple Tutsplus demo app utilizing Sinatra and Redis
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

57 lines
918 B

12 years ago
  1. body {
  2. font-family: "Gill Sans", "Gill Sans MT", Sans-Serif; }
  3. .container {
  4. width: 400px;
  5. margin: 120px auto 0px auto; }
  6. h1 {
  7. width: 400px;
  8. margin-bottom: 12px;
  9. text-align: center;
  10. color: #ff4b33;
  11. font-size: 40px;
  12. padding-bottom: 8px;
  13. border-bottom: 2px solid #ff4b33; }
  14. form {
  15. display: block;
  16. width: 400px; }
  17. input {
  18. display: block;
  19. float: left;
  20. padding: 8px;
  21. font-size: 16px; }
  22. #url {
  23. width: 280px;
  24. margin-right: 12px; }
  25. #submit {
  26. width: 88px;
  27. border: none;
  28. background: #ff4b33;
  29. padding: 10px;
  30. &:hover {
  31. background: #ff7866; } }
  32. .clear {
  33. height: 1px;
  34. width: 400px;
  35. clear: both; }
  36. .result {
  37. clear: both;
  38. width: 400px;
  39. margin-top: 12px;
  40. border-top: 2px solid #ff4b33;
  41. padding-top: 12px;
  42. text-align: center;
  43. a {
  44. font-size: 24px;
  45. display: block;
  46. margin-top: 8px;
  47. color: #ff2d11;
  48. background: #ffd2cc;
  49. padding: 8px; } }