Personal website https://benkurtovic.com/
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

231 líneas
5.2 KiB

  1. body {
  2. font-family: helvetica, arial, clean, sans-serif;
  3. font-size: 14px;
  4. color: #000;
  5. background: #E0E0E0 url("/images/background.png") repeat top left;
  6. }
  7. .color-highlight {
  8. color: #040;
  9. }
  10. .highlight { /* syntax highlighter */
  11. background: #f2f2f2;
  12. border: 1px solid #e8e8e8;
  13. border-radius: 10px;
  14. padding-left: 16px;
  15. line-height: 1.35em;
  16. font-size: 13px;
  17. }
  18. .description {
  19. font-size: 12px;
  20. }
  21. .index-header {
  22. padding-top: 15px;
  23. text-align: center;
  24. }
  25. pre {
  26. white-space: pre-wrap;
  27. }
  28. code {
  29. background: #f2f2f2;
  30. border: 1px solid #e8e8e8;
  31. padding: 0 3px;
  32. }
  33. pre code {
  34. border: 0;
  35. padding: 0;
  36. }
  37. div.project {
  38. border: 1px solid #CCC;
  39. border-radius: 5px;
  40. }
  41. div.project-head {
  42. padding: 3px 12px 6px 12px;
  43. border-bottom: 1px solid #CCC;
  44. border-radius: 5px 5px 0px 0px;
  45. /* all I want is a simple background gradient without images! */
  46. background: #E0E0E0; /* fallback (your browser is crap) */
  47. background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E3E3E3), to(#CACACA)); /* Chrome, Safari 4+ */
  48. background: -webkit-linear-gradient(top, #E3E3E3, #CACACA); /* Chrome 10+, Safari 5+ */
  49. background: -moz-linear-gradient(top, #E3E3E3, #CACACA); /* Firefox 3.6+ */
  50. background: -ms-linear-gradient(top, #E3E3E3, #CACACA); /* IE 10+ (lol) */
  51. background: -o-linear-gradient(top, #E3E3E3, #CACACA); /* Opera 11.10+ */
  52. background: linear-gradient(top, #E3E3E3, #CACACA); /* God-tier */
  53. }
  54. div.project-body {
  55. padding: 6px 12px 9px 12px;
  56. border-radius: 0px 0px 5px 5px;
  57. background: #F4F4F4;
  58. background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F9F9F9), to(#EFEFEF));
  59. background: -webkit-linear-gradient(top, #F9F9F9, #EFEFEF);
  60. background: -moz-linear-gradient(top, #F9F9F9, #EFEFEF);
  61. background: -ms-linear-gradient(top, #F9F9F9, #EFEFEF);
  62. background: -o-linear-gradient(top, #F9F9F9, #EFEFEF);
  63. background: linear-gradient(top, #F9F9F9, #EFEFEF); */
  64. }
  65. div.divider {
  66. border-bottom: 1px solid #AAA;
  67. margin-top: 15px;
  68. margin-bottom: 15px;
  69. }
  70. td.about-l {
  71. padding: 4px 12px 4px 12px;
  72. border-left: 1px solid #CCC;
  73. }
  74. td.about-r {
  75. padding: 4px 12px 4px 12px;
  76. border-right: 1px solid #CCC;
  77. }
  78. li.post {
  79. margin-bottom: 20px;
  80. }
  81. td.light-l { background-color: #ECECEC; }
  82. td.dark-l { background-color: #DADADA; }
  83. td.light-r { background-color: #F7F7F7; }
  84. td.dark-r { background-color: #E5E5E5; }
  85. p#about-me-top {
  86. margin-top: 0px;
  87. }
  88. h1#head {
  89. margin-top: 0px;
  90. padding-top: 0px;
  91. margin-bottom: 0px;
  92. padding-bottom: 0px;
  93. text-align: center;
  94. }
  95. div#everything {
  96. max-width: 800px;
  97. margin: auto;
  98. padding: 0 40px 0 40px;
  99. }
  100. div#container {
  101. margin: 20px auto 32px auto;
  102. border: 1px solid #999;
  103. border-radius: 10px;
  104. background-color: #FFF;
  105. }
  106. div#header {
  107. margin: 16px 16px 20px 16px;
  108. padding: 35px 0px 35px 0px;
  109. border: 1px solid #999;
  110. border-radius: 10px 10px 0px 0px;
  111. /* see div.project-head for details */
  112. background: #DDEEDD;
  113. background: -webkit-gradient(linear, left top, left bottom, from(#E4F1E4), to(#B1BEB1));
  114. background: -webkit-linear-gradient(top, #E4F1E4, #B1BEB1);
  115. background: -moz-linear-gradient(top, #E4F1E4, #B1BEB1);
  116. background: -ms-linear-gradient(top, #E4F1E4, #B1BEB1);
  117. background: -o-linear-gradient(top, #E4F1E4, #B1BEB1);
  118. background: linear-gradient(top, #E4F1E4, #B1BEB1);
  119. }
  120. div#content {
  121. padding: 2px 15px 2px 15px;
  122. }
  123. div#footer {
  124. font-size: 11px;
  125. text-align: center;
  126. padding: 9px 4px 12px 4px;
  127. color: #222;
  128. }
  129. div#post-info {
  130. margin-left: 24px;
  131. }
  132. div#post {
  133. line-height: 1.75em;
  134. }
  135. div#avatar-box {
  136. float: right;
  137. position: relative;
  138. left: 50px;
  139. margin-left: -40px;
  140. padding: 12px;
  141. background-color: #FFF;
  142. border: 1px solid #999;
  143. border-radius: 5px;
  144. -webkit-transform:rotate(3deg);
  145. -moz-transform:rotate(3deg);
  146. -o-transform:rotate(3deg);
  147. -ms-transform:rotate(3deg);
  148. }
  149. div#follow-button-box {
  150. float: right;
  151. }
  152. ul#post-list {
  153. padding-left: 1em;
  154. }
  155. img#forkme {
  156. position: absolute;
  157. top: 0;
  158. right: 0;
  159. border: 0;
  160. }
  161. img#avatar {
  162. border-radius: 5px;
  163. }
  164. table#about {
  165. width: 100%;
  166. }
  167. td#left-box {
  168. width: 50%;
  169. vertical-align: top;
  170. }
  171. td#right-box {
  172. padding-left: 25px;
  173. vertical-align: top;
  174. }
  175. td#about-tl { border-top-left-radius: 5px; border-top: 1px solid #AAA; }
  176. td#about-tr { border-top-right-radius: 5px; border-top: 1px solid #AAA; }
  177. td#about-bl { border-bottom-left-radius: 5px; border-bottom: 1px solid #AAA; }
  178. td#about-br { border-bottom-right-radius: 5px; border-bottom: 1px solid #AAA; }
  179. a:link { color: #373; text-decoration: none; }
  180. a:visited { color: #373; text-decoration: none; }
  181. a:hover { color: #040; text-decoration: underline; }
  182. a:active { color: #404; text-decoration: underline; }
  183. a.invert:link { text-decoration: underline; }
  184. a.invert:visited { text-decoration: underline; }
  185. a.invert:hover { text-decoration: none; }
  186. a.invert:active { text-decoration: none; }
  187. a.incognito:link { color: #000; text-decoration: none; }
  188. a.incognito:visited { color: #000; text-decoration: none; }
  189. a.incognito:hover { color: #000; text-decoration: underline; }
  190. a.incognito:active { color: #000; text-decoration: none; }