style.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. @import url(https://fonts.googleapis.com/css?family=Ubuntu:500&subset=latin,latin-ext);
  2. body{
  3. color: #2c3e50;
  4. }
  5. .sidebar {
  6. position: fixed;
  7. top: 0px;
  8. padding-top: 10%;
  9. background-color: #222;
  10. color: #fff;
  11. }
  12. .sidebar-header {
  13. text-align: center;
  14. margin-bottom: 10px;
  15. }
  16. .sidebar-header .title{
  17. letter-spacing: 3px;
  18. text-transform: uppercase;
  19. }
  20. .sidebar-header .title a{
  21. text-decoration: none;
  22. color: #fff;
  23. }
  24. .nav-link {
  25. position: relative;
  26. float: right;
  27. margin-top: 15px;
  28. margin-bottom: 8px;
  29. }
  30. .nav-link.last {
  31. margin-right: 10px;
  32. }
  33. #bio {
  34. font-family: "Courier New", Courier, monospace;
  35. font-size: 11px;
  36. margin: 0 auto;
  37. margin-bottom: 10px;
  38. }
  39. #contact-list li .fa,
  40. article .share .btn {
  41. -o-transition:color .2s ease-out, background 1s ease-in;
  42. -ms-transition:color .2s ease-out, background 1s ease-in;
  43. -moz-transition:color .2s ease-out, background 1s ease-in;
  44. -webkit-transition:color .2s ease-out, background 1s ease-in;
  45. transition:color .2s ease-out, background 1s ease-in;
  46. }
  47. #contact-list li:hover .fa-twitter,
  48. article .share .twitter:hover {
  49. color: #00ACEE;
  50. border-color: #00ACEE;
  51. }
  52. #contact-list li:hover .fa-linkedin {
  53. color: #1D87BD;
  54. }
  55. #contact-list li:hover .fa-envelope {
  56. color: #E93E30;
  57. }
  58. #contact-list li:hover .fa-pinterest {
  59. color: #CC2127;
  60. }
  61. #contact-list li:hover .fa-rss {
  62. color: #e74c3c;
  63. }
  64. article .share .facebook:hover {
  65. color: #43609C;
  66. border-color: #43609C;
  67. }
  68. article .share .gplus:hover {
  69. color: #C13929;
  70. border-color: #C13929;
  71. }
  72. #contact-list-secondary {
  73. padding-bottom: 10px;
  74. }
  75. .page-header {
  76. margin-top: 50px;
  77. padding: 0 5% 0;
  78. color: #2c3e50;
  79. }
  80. article{
  81. margin-bottom: 40px;
  82. }
  83. .article_body{
  84. margin-top: 20px;
  85. margin-bottom: 20px;
  86. }
  87. .article_body ul {
  88. margin-bottom: 30px;
  89. }
  90. .post-date {
  91. text-transform: uppercase;
  92. font-size: 14px;
  93. letter-spacing: 3px;
  94. }
  95. article {
  96. padding: 0 5% 0;
  97. }
  98. article img { max-width: 100%; }
  99. h1,h2,h3,h4,h5,h6 { font-family: 'Ubuntu', sans-serif; }
  100. article.home h1 a,
  101. article.home h2 a,
  102. article.home h3 a,
  103. article.home h4 a {
  104. color: #f2756a;
  105. }
  106. article.home h1 a:hover,
  107. article.home h2 a:hover,
  108. article.home h3 a:hover,
  109. article.home h4 a:hover {
  110. color: #e74c3c;
  111. }
  112. h2 {
  113. margin-top: 40px;
  114. }
  115. blockquote {
  116. margin-top: 30px;
  117. background-color: #dbfcff;
  118. border-left: 5px solid #30cad4;
  119. }
  120. code, .highlight .na, .highlight .nv {
  121. color: #0fb4c0;
  122. }
  123. .highlight .sd {
  124. color: #999988;
  125. }
  126. .author .author-image {
  127. float: left;
  128. margin-right: 20px;
  129. }
  130. footer {
  131. padding-top: 15px;
  132. text-align: center;
  133. }
  134. .panel {
  135. margin: 0;
  136. border: none;
  137. background-color: transparent;
  138. }
  139. /* nav-vertical-tabs component */
  140. .nav-tabs-vertical {
  141. border-right: 1px solid #ddd;
  142. }
  143. .nav-tabs-vertical li {
  144. margin-right: -1px;
  145. }
  146. .nav-tabs-vertical>li.active>a, .nav-tabs-vertical>li.active>a:hover, .nav-tabs-vertical>li.active>a:focus {
  147. color: #555;
  148. cursor: default;
  149. background-color: #fff;
  150. border: 1px solid #ddd;
  151. border-right-color: transparent;
  152. }
  153. .nav-tabs-vertical>li>a {
  154. line-height: 1.428571429;
  155. border: 1px solid transparent;
  156. border-radius: 4px 0 0 4px;
  157. }
  158. .navbar-nav {
  159. margin-top: 30px;
  160. }
  161. .badge { background: #F2756A; }
  162. #nav-menu{
  163. position: fixed;
  164. top: 45px;
  165. right: 45px;
  166. z-index: 2000;
  167. }
  168. #nav-version{
  169. position: fixed;
  170. top: 45px;
  171. right: 90px;
  172. z-index: 2000;
  173. }
  174. #nav-menu .dropdown-menu {
  175. left: inherit;
  176. right: 0px;
  177. }
  178. #version-notice{
  179. background-color: #30cad4;
  180. padding: 5px 10px;
  181. position: fixed;
  182. top: 0;
  183. left: 0;
  184. width: 100%;
  185. text-align: center;
  186. color: #157380;
  187. z-index: 9999;
  188. }
  189. #version-notice span {
  190. color: #fff;
  191. }
  192. .version-toggle {
  193. padding-top: 6px;
  194. padding-bottom: 6px;
  195. }
  196. ul.dropdown-menu>li>a>i.fa {
  197. width: 1.3em;
  198. }
  199. table {
  200. width: 100%;
  201. padding: 9.5px;
  202. margin: 0 0 20px;
  203. line-height: 1.428571429;
  204. color: #333;
  205. background-color: #f5f5f5;
  206. border: 1px solid #ddd;
  207. }
  208. table th, table td {
  209. padding: 10px;
  210. }
  211. table th, table tr:nth-child(even) {
  212. background-color: #fefefe;
  213. }
  214. .fa-terminal:before {
  215. padding-right: 5px;
  216. }
  217. @media (max-width: 768px) {
  218. #version-notice {
  219. top: 67px;
  220. position: absolute;
  221. }
  222. }