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.
 
 
 
 

223 lines
3.3 KiB

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