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.

punk.css 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Author: Tim Herman
  3. * Website: http://www.punk.be
  4. * Comments: Based on the normalize.css design. The best I could do without touching the php files. Temp solution untill an MVC model is applied
  5. /* RESET */
  6. @import url("../style/normalize.css");
  7. /* BEGIN ACTUAL STYLESHEET */
  8. body {
  9. background: #F7F7F7;
  10. }
  11. * {
  12. color: #333333;
  13. }
  14. a {
  15. text-decoration: none;
  16. color: #069;
  17. }
  18. a:hover {
  19. text-decoration: underline;
  20. }
  21. p, div, table tr, table tr td, table tr th, strong, li, b, input, textarea {
  22. font-size: 0.9em;
  23. }
  24. /*HEADERS*/
  25. h1 {
  26. font-size: 2.375em;
  27. color: #69A619;
  28. text-transform: lowercase;
  29. text-shadow: 1px 1px 0 #304d08;
  30. text-decoration: none;
  31. }
  32. h1, .menu {
  33. margin: 10px auto;
  34. width: 980px;
  35. }
  36. h2, h3 {
  37. font-size: 1.17em;
  38. }
  39. .content, .footer {
  40. margin: 10px auto;
  41. width: 940px;
  42. }
  43. /*NAVIGATION*/
  44. .menu {
  45. }
  46. .menuitem {
  47. padding-right: 5px;
  48. font-size: 0.8em;
  49. font-weight: bold;
  50. }
  51. /*CONTENT*/
  52. .content {
  53. padding: 20px 20px;
  54. border: 1px solid #ccc;
  55. background: #fff;
  56. }
  57. table {
  58. border-collapse: collapse;
  59. }
  60. table tr th {
  61. text-align: left;
  62. padding-right: 10px;
  63. font-weight: normal;
  64. }
  65. table tr td {
  66. padding: 3px;
  67. }
  68. .success, .error {
  69. padding: 10px;
  70. font-weight: bold;
  71. }
  72. .success {
  73. border: 1px solid green;
  74. color: green;
  75. }
  76. .error {
  77. border: 1px solid red;
  78. color: red;
  79. }
  80. .footer {
  81. font-size: 0.6em;
  82. }