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.
 
 
 
 

219 line
3.2 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. .project {
  90. margin-bottom: 1.25em;
  91. }
  92. .project div:nth-child(2) {
  93. font-size: 14px;
  94. }
  95. #project-list, #post-list {
  96. padding-left: 1em;
  97. }
  98. #project-list li, #post-list li {
  99. margin-bottom: 1.25em;
  100. }
  101. .subtitle {
  102. font-size: 14px;
  103. }
  104. .tag {
  105. background-color: #f2f2f2;
  106. border: 1px solid #e8e8e8;
  107. color: #888;
  108. cursor: pointer;
  109. padding: 0 3px;
  110. }
  111. .tag-selected {
  112. background-color: #ddd;
  113. color: black;
  114. }
  115. #post-info {
  116. list-style-type: none;
  117. margin: 0;
  118. padding-left: 0;
  119. }
  120. #post-info li {
  121. line-height: 1em;
  122. margin-bottom: 0.5em;
  123. }
  124. #post-info li:last-child {
  125. margin-bottom: 0;
  126. }
  127. #post-info span {
  128. color: #777;
  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. color: #444;
  172. font-size: 85%;
  173. text-align: center;
  174. }