profstef.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. html,body {
  2. margin: 0;
  3. padding: 0;
  4. font: 14px "Helvetica Neue", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
  5. line-height: 1.5;
  6. color: #444;
  7. }
  8. /* Fonts */
  9. h1, h2, h3 {
  10. font-family: 'Istok Web';
  11. font-weight: normal;
  12. color: #442905;
  13. line-height: 1.2;
  14. }
  15. h1 {
  16. text-align: center;
  17. font-weight: bold;
  18. text-shadow: 0px 1px 1px #FFF;
  19. }
  20. .main {
  21. width: 900px;
  22. margin: 0;
  23. border: 0;
  24. text-align: center;
  25. margin: 0 auto;
  26. }
  27. .main img {
  28. margin: 30px 0;
  29. }
  30. a#back {
  31. color: #666;
  32. padding: 20px 0;
  33. }
  34. #tutorial {
  35. padding: 20px 40px;
  36. margin: 30px 0;
  37. text-align: left;
  38. border: 12px solid #aaa;
  39. border-radius: 8px;
  40. -webkit-border-radius: 8px;
  41. -moz-border-radius: 8px;
  42. }
  43. #tutorial .CodeMirror {
  44. height: auto;
  45. }
  46. #tutorial .CodeMirror-scroll {
  47. overflow: auto;
  48. height: auto;
  49. }
  50. #footer .main {
  51. border-top: 1px dashed #bbb;
  52. padding-top: 10px;
  53. }
  54. #footer p {
  55. text-align: center;
  56. line-height: 1em;
  57. color: #aaa;
  58. }
  59. #footer a {
  60. color: #3faae1;
  61. text-decoration: none;
  62. }
  63. #footer a:hover {
  64. text-decoration: underline;
  65. }