StyleSheet.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /*
  2. Main CSS file for tankernn.eu
  3. Backgrund from http://www.facets.la/wallpapers/
  4. */
  5. @font-face {
  6. font-family: "Open Sans";
  7. src: url(https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix) format("embedded-opentype"),
  8. url(https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff) format("woff"),
  9. url(https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf) format("truetype");
  10. font-weight: normal;
  11. font-style: normal;
  12. }
  13. @font-face {
  14. font-family: "Open Sans";
  15. src: url(https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Bold-webfont.eot#iefix) format("embedded-opentype"),
  16. url(https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Bold-webfont.woff) format("woff"),
  17. url(https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Bold-webfont.ttf) format("truetype");
  18. font-weight: bold;
  19. font-style: normal;
  20. }
  21. @keyframes goRight {
  22. 0% {left: -500px}
  23. 100% {left: 100%}
  24. }
  25. body {
  26. font-family: "Open Sans", sans-serif;
  27. font-size: 20px;
  28. background-color: #00a4e1;
  29. color: #777;
  30. border-collapse: collapse;
  31. }
  32. body * {
  33. transition: 0.5s;
  34. }
  35. main .container {
  36. padding-top: 40px;
  37. padding-bottom: 40px;
  38. }
  39. .meta > div > div {
  40. background: #FFF;
  41. border-radius: 10px;
  42. border: 1px solid transparent;
  43. padding: 0 20px 20px;
  44. margin-bottom: 20px;
  45. }
  46. /*#### Header styling ####*/
  47. nav {
  48. background-color: white;
  49. border-bottom: 3px solid #337AB7;
  50. }
  51. .navbar-toggle .icon-bar {
  52. background-color: darkgray;
  53. }
  54. .login {
  55. float: right;
  56. padding-top: 5px;
  57. padding-right: 10px;
  58. }
  59. /*#### Menu ####*/
  60. nav ul li:hover a {
  61. background-color: transparent !important;
  62. }
  63. nav ul li a {
  64. z-index: 5;
  65. }
  66. #menuselector {
  67. background-color: #337AB7;
  68. position: absolute;
  69. z-index: 4;
  70. display: none;
  71. }
  72. /*#### Structural Styling ####*/
  73. h1, h2, h3, h4, h5, h6 {
  74. color: black;
  75. }
  76. footer {
  77. font-family: Arial, inherit;
  78. font-size: 18px;
  79. background-color: #393939;
  80. color: white;
  81. padding-top: 20px;
  82. padding-bottom: 20px;
  83. }
  84. footer a, footer a:hover {
  85. color: white;
  86. }
  87. footer ul li {
  88. list-style: none;
  89. }
  90. /*#### Various Styling ###*/
  91. #snakeCanvas {
  92. border: 1px solid black;
  93. }
  94. .coral {
  95. animation: goRight linear 3s 1;
  96. position: fixed;
  97. left: -500px;
  98. }
  99. .error {
  100. background-color: #D9534F;
  101. color: white;
  102. }
  103. li.L0, li.L1, li.L2, li.L3,
  104. li.L5, li.L6, li.L7, li.L8
  105. { list-style-type: decimal !important }
  106. .prettyprint {
  107. background-color: #fdfdfd;
  108. font-family: Courier;
  109. padding: 2px;
  110. border-radius: 5px;
  111. white-space: pre-wrap;
  112. -moz-tab-size: 4;
  113. -o-tab-size: 4;
  114. tab-size: 4;
  115. }
  116. .download-button {
  117. font-size: 26px;
  118. padding: 15px 100px;
  119. font-weight: bold;
  120. background-color: #0085B7;
  121. color: white;
  122. transition: 0.5s;
  123. text-decoration: none;
  124. margin-top: 5px;
  125. margin-bottom: 5px;
  126. display: inline-block;
  127. border: 2px solid #0085B7;
  128. border-radius: 10px;
  129. }
  130. .download-button:hover {
  131. background-color: transparent;
  132. text-decoration: none;
  133. color: #0085B7;
  134. }
  135. @media screen and (min-width: 765px) {
  136. .navbar-nav {
  137. float: right;
  138. }
  139. #menuselector {
  140. display: block;
  141. }
  142. }