Personal website https://benkurtovic.com/
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

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