Personal website https://benkurtovic.com/
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.
 
 
 
 

217 lines
3.3 KiB

  1. @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700|Oxygen:700);
  2. body {
  3. margin: 0;
  4. background-color: white;
  5. color: black;
  6. font-family: "Open Sans", sans-serif;
  7. font-size: 16px;
  8. }
  9. a:link, a:visited { color: #3d7751; text-decoration: none; }
  10. a:hover { color: #041; text-decoration: underline; }
  11. a:active { color: #403; text-decoration: underline; }
  12. a.underlined:link, a.underlined:visited { text-decoration: underline; }
  13. a.underlined:hover, a.underlined:active { text-decoration: none; }
  14. #banner {
  15. height: 94px;
  16. line-height: 94px;
  17. background-color: black;
  18. border-top: 4px solid #3d7751;
  19. text-align: center;
  20. }
  21. #banner a {
  22. color: white;
  23. text-decoration: none;
  24. }
  25. #banner img {
  26. display: inline;
  27. height: 92px;
  28. padding: 2px 0.5em 0 0;
  29. vertical-align: top;
  30. }
  31. #banner h1 {
  32. display: inline;
  33. font-size: 2em;
  34. font-family: "Oxygen", sans-serif;
  35. text-align: center;
  36. }
  37. #container {
  38. margin: 1.5em auto 0;
  39. max-width: 1000px;
  40. padding: 0 40px 0 40px;
  41. }
  42. #container p {
  43. line-height: 1.25em;
  44. }
  45. p#bio {
  46. line-height: 1.5em;
  47. }
  48. #content p, #content ol, #content li {
  49. line-height: 1.75em;
  50. }
  51. #links {
  52. width: 100%;
  53. text-align: center;
  54. border-spacing: 0;
  55. }
  56. #links td {
  57. width: 16.666666666667%;
  58. }
  59. #links td:not(:first-child) {
  60. border-left: 1px solid #CCC;
  61. }
  62. #work {
  63. width: 100%;
  64. border-spacing: 0;
  65. }
  66. #work td {
  67. width: 50%;
  68. vertical-align: top;
  69. }
  70. #work td:not(:first-child) {
  71. padding-left: 0.75em;
  72. }
  73. #work td:not(:last-child) {
  74. padding-right: 0.75em;
  75. }
  76. .work-list {
  77. padding-left: 1em;
  78. list-style-type: none;
  79. }
  80. .work-list li {
  81. margin-bottom: 1.25em;
  82. position: relative;
  83. }
  84. .work-list li:before {
  85. content: "\27a4";
  86. position: absolute;
  87. left: -2em;
  88. line-height: 3em;
  89. font-size: 0.5em;
  90. }
  91. .subtitle {
  92. font-size: 14px;
  93. }
  94. .tag {
  95. background-color: #f2f2f2;
  96. border: 1px solid #e8e8e8;
  97. color: #888;
  98. cursor: pointer;
  99. margin: 0 3px;
  100. padding: 2px 3px;
  101. }
  102. .tag-selected {
  103. background-color: #ddd;
  104. color: black;
  105. }
  106. #post-info {
  107. list-style-type: none;
  108. margin: 0;
  109. padding-left: 0;
  110. }
  111. #post-info li {
  112. line-height: 1em;
  113. margin-bottom: 0.5em;
  114. }
  115. #post-info li:last-child {
  116. margin-bottom: 0;
  117. }
  118. #post-info span {
  119. color: #777;
  120. }
  121. .post-tag {
  122. background-color: #f2f2f2;
  123. border: 1px solid #e8e8e8;
  124. margin: 0 3px;
  125. padding: 2px 3px;
  126. }
  127. .post-tag:link, .post-tag:visited {
  128. color: black;
  129. }
  130. pre {
  131. white-space: pre-wrap;
  132. }
  133. code {
  134. background-color: #f2f2f2;
  135. border: 1px solid #e8e8e8;
  136. padding: 0 3px;
  137. }
  138. pre code {
  139. border: 0;
  140. padding: 0;
  141. }
  142. .highlight, .highlighttable {
  143. background-color: #f2f2f2;
  144. border: 1px solid #e8e8e8;
  145. font-size: 14px;
  146. line-height: 1.35em;
  147. padding-left: 16px;
  148. }
  149. .highlighttable {
  150. width: 100%;
  151. }
  152. .highlighttable .highlight {
  153. border: 0;
  154. }
  155. .linenos {
  156. color: #888;
  157. }
  158. .para-link {
  159. margin-left: 0.5em;
  160. padding: 0 0.25em 0 0.3em;
  161. }
  162. .para-link:link, .para-link:visited {
  163. color: #A00;
  164. text-decoration: none;
  165. }
  166. .para-link:hover, .para-link:active {
  167. background-color: #A00;
  168. color: white;
  169. }
  170. #footer {
  171. margin-bottom: 1.5em;
  172. color: #444;
  173. font-size: 85%;
  174. text-align: center;
  175. }