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.
 
 
 
 

198 lines
4.8 KiB

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