styles.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* styles */
  2. /* called by your view template */
  3. /* You might want to try something fancier: */
  4. /* less: http://lesscss.org/ */
  5. * {
  6. box-sizing: border-box;
  7. }
  8. body {
  9. font-family: helvetica, arial, sans-serif;
  10. margin: 25px;
  11. }
  12. h1 {
  13. font-weight: bold;
  14. color: pink;
  15. }
  16. .bold {
  17. font-weight: bold;
  18. }
  19. p {
  20. max-width: 600px;
  21. }
  22. form {
  23. margin-bottom: 25px;
  24. padding: 15px;
  25. background-color: cyan;
  26. display: inline-block;
  27. width: 100%;
  28. max-width: 340px;
  29. border-radius: 3px;
  30. }
  31. input {
  32. display: block;
  33. margin-bottom: 10px;
  34. padding: 5px;
  35. width: 100%;
  36. border: 1px solid lightgrey;
  37. border-radius: 3px;
  38. font-size: 16px;
  39. }
  40. button {
  41. font-size: 16px;
  42. border-radius: 3px;
  43. background-color: lightgrey;
  44. border: 1px solid grey;
  45. box-shadow: 2px 2px teal;
  46. cursor: pointer;
  47. }
  48. button:hover {
  49. background-color: yellow;
  50. }
  51. button:active {
  52. box-shadow: none;
  53. }
  54. li {
  55. margin-bottom: 5px;
  56. }
  57. footer {
  58. margin-top: 50px;
  59. padding-top: 25px;
  60. border-top: 1px solid lightgrey;
  61. }
  62. footer > a {
  63. color: #BBBBBB;
  64. }
  65. .nicejob {
  66. text-decoration: line-through;
  67. }