_variables.scss 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  1. // crowi
  2. $brand-primary: #43676b;
  3. $crowiHeaderBackground: darken($brand-primary, 15%);
  4. $crowiHeaderHeight: 50px;
  5. // $crowiAsideBackground: darken($crowiHeaderBackground, 5%);
  6. $crowiAsideBackground: #fcfcfc;
  7. $crowiFooterBackground: $crowiHeaderBackground;
  8. $crowiFooterHeight: 34px;
  9. //
  10. // Variables
  11. // --------------------------------------------------
  12. // Global values
  13. // --------------------------------------------------
  14. // Grays
  15. // -------------------------
  16. $gray-darker: lighten(#000, 13.5%); // #222
  17. $gray-dark: lighten(#000, 20%); // #333
  18. // $gray: lighten(#000, 33.5%); // #555
  19. // $gray-light: lighten(#000, 60%); // #999
  20. // $gray-lighter: lighten(#000, 93.5%); // #eee
  21. //
  22. // // Brand colors
  23. // // -------------------------
  24. //
  25. //$brand-primary: #4d4398;
  26. //$brand-primary: #622d18;
  27. //$brand-primary: #e5a323;
  28. // $brand-success: #5cb85c;
  29. // $brand-warning: #f0ad4e;
  30. // $brand-danger: #d9534f;
  31. // $brand-info: #5bc0de;
  32. //
  33. // // Scaffolding
  34. // // -------------------------
  35. //
  36. //$body-bg: $crowiHeaderBackground;
  37. // $text-color: $gray-dark;
  38. //
  39. // // Links
  40. // // -------------------------
  41. //
  42. $link-color: $brand-primary;
  43. $link-hover-color: darken($link-color, 15%);
  44. //
  45. // // Typography
  46. // // -------------------------
  47. //
  48. // $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
  49. // $font-family-serif: Georgia, "Times New Roman", Times, serif;
  50. // $font-family-monospace: Monaco, Menlo, Consolas, "Courier New", monospace;
  51. // $font-family-base: $font-family-sans-serif;
  52. //
  53. // $font-size-base: 14px;
  54. // $font-size-large: ceil($font-size-base * 1.25); // ~18px
  55. // $font-size-small: ceil($font-size-base * 0.85); // ~12px
  56. //
  57. // $font-size-h1: floor($font-size-base * 2.6); // ~36px
  58. // $font-size-h2: floor($font-size-base * 2.15); // ~30px
  59. // $font-size-h3: ceil($font-size-base * 1.7); // ~24px
  60. // $font-size-h4: ceil($font-size-base * 1.25); // ~18px
  61. // $font-size-h5: $font-size-base;
  62. // $font-size-h6: ceil($font-size-base * 0.85); // ~12px
  63. //
  64. // $line-height-base: 1.428571429; // 20/14
  65. // $line-height-computed: floor($font-size-base * $line-height-base); // ~20px
  66. //
  67. // $headings-font-family: $font-family-base;
  68. // $headings-font-weight: 500;
  69. // $headings-line-height: 1.1;
  70. // $headings-color: inherit;
  71. //
  72. //
  73. // // Iconography
  74. // // -------------------------
  75. //
  76. // $icon-font-path: "../fonts/";
  77. // $icon-font-name: "glyphicons-halflings-regular";
  78. //
  79. //
  80. // // Components
  81. // // -------------------------
  82. // // Based on 14px font-size and 1.428 line-height (~20px to start)
  83. //
  84. // $padding-base-vertical: 6px;
  85. // $padding-base-horizontal: 12px;
  86. //
  87. // $padding-large-vertical: 10px;
  88. // $padding-large-horizontal: 16px;
  89. //
  90. // $padding-small-vertical: 5px;
  91. // $padding-small-horizontal: 10px;
  92. //
  93. // $line-height-large: 1.33;
  94. // $line-height-small: 1.5;
  95. //
  96. // $border-radius-base: 4px;
  97. // $border-radius-large: 6px;
  98. // $border-radius-small: 3px;
  99. //
  100. // $component-active-color: #fff;
  101. // $component-active-bg: $brand-primary;
  102. //
  103. // $caret-width-base: 4px;
  104. // $caret-width-large: 5px;
  105. //
  106. // // Tables
  107. // // -------------------------
  108. //
  109. // $table-cell-padding: 8px;
  110. // $table-condensed-cell-padding: 5px;
  111. //
  112. // $table-bg: transparent; // overall background-color
  113. // $table-bg-accent: #f9f9f9; // for striping
  114. // $table-bg-hover: #f5f5f5;
  115. // $table-bg-active: $table-bg-hover;
  116. //
  117. // $table-border-color: #ddd; // table and cell border
  118. //
  119. //
  120. // // Buttons
  121. // // -------------------------
  122. //
  123. // $btn-font-weight: normal;
  124. //
  125. // $btn-default-color: #333;
  126. // $btn-default-bg: #fff;
  127. // $btn-default-border: #ccc;
  128. //
  129. // $btn-primary-color: #fff;
  130. // $btn-primary-bg: $brand-primary;
  131. // $btn-primary-border: darken($btn-primary-bg, 5%);
  132. //
  133. // $btn-success-color: #fff;
  134. // $btn-success-bg: $brand-success;
  135. // $btn-success-border: darken($btn-success-bg, 5%);
  136. //
  137. // $btn-warning-color: #fff;
  138. // $btn-warning-bg: $brand-warning;
  139. // $btn-warning-border: darken($btn-warning-bg, 5%);
  140. //
  141. // $btn-danger-color: #fff;
  142. // $btn-danger-bg: $brand-danger;
  143. // $btn-danger-border: darken($btn-danger-bg, 5%);
  144. //
  145. // $btn-info-color: #fff;
  146. // $btn-info-bg: $brand-info;
  147. // $btn-info-border: darken($btn-info-bg, 5%);
  148. //
  149. // $btn-link-disabled-color: $gray-light;
  150. //
  151. //
  152. // // Forms
  153. // // -------------------------
  154. //
  155. // $input-bg: #fff;
  156. // $input-bg-disabled: $gray-lighter;
  157. //
  158. // $input-color: $gray;
  159. // $input-border: #ccc;
  160. // $input-border-radius: $border-radius-base;
  161. // $input-border-focus: #66afe9;
  162. //
  163. // $input-color-placeholder: $gray-light;
  164. //
  165. // $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2);
  166. // $input-height-large: (floor($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2);
  167. // $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2);
  168. //
  169. // $legend-color: $gray-dark;
  170. // $legend-border-color: #e5e5e5;
  171. //
  172. // $input-group-addon-bg: $gray-lighter;
  173. // $input-group-addon-border-color: $input-border;
  174. //
  175. //
  176. // // Dropdowns
  177. // // -------------------------
  178. //
  179. // $dropdown-bg: #fff;
  180. // $dropdown-border: rgba(0,0,0,.15);
  181. // $dropdown-fallback-border: #ccc;
  182. // $dropdown-divider-bg: #e5e5e5;
  183. //
  184. $dropdown-link-color: $gray-dark;
  185. $dropdown-link-hover-color: darken($gray-dark, 5%);
  186. $dropdown-link-hover-bg: #f5f5f5;
  187. //
  188. // $dropdown-link-active-color: $component-active-color;
  189. // $dropdown-link-active-bg: $component-active-bg;
  190. //
  191. // $dropdown-link-disabled-color: $gray-light;
  192. //
  193. // $dropdown-header-color: $gray-light;
  194. //
  195. // $dropdown-caret-color: #000;
  196. //
  197. //
  198. // // COMPONENT VARIABLES
  199. // // --------------------------------------------------
  200. //
  201. //
  202. // // Z-index master list
  203. // // -------------------------
  204. // // Used for a bird's eye view of components dependent on the z-axis
  205. // // Try to avoid customizing these :)
  206. //
  207. // $zindex-navbar: 1000;
  208. // $zindex-dropdown: 1000;
  209. // $zindex-popover: 1010;
  210. // $zindex-tooltip: 1030;
  211. // $zindex-navbar-fixed: 1030;
  212. // $zindex-modal-background: 1040;
  213. // $zindex-modal: 1050;
  214. //
  215. // // Media queries breakpoints
  216. // // --------------------------------------------------
  217. //
  218. // // Extra small screen / phone
  219. // // Note: Deprecated $screen-xs and $screen-phone as of v3.0.1
  220. // $screen-xs: 480px;
  221. // $screen-xs-min: $screen-xs;
  222. // $screen-phone: $screen-xs-min;
  223. //
  224. // // Small screen / tablet
  225. // // Note: Deprecated $screen-sm and $screen-tablet as of v3.0.1
  226. // $screen-sm: 768px;
  227. // $screen-sm-min: $screen-sm;
  228. // $screen-tablet: $screen-sm-min;
  229. //
  230. // // Medium screen / desktop
  231. // // Note: Deprecated $screen-md and $screen-desktop as of v3.0.1
  232. // $screen-md: 992px;
  233. // $screen-md-min: $screen-md;
  234. // $screen-desktop: $screen-md-min;
  235. //
  236. // // Large screen / wide desktop
  237. // // Note: Deprecated $screen-lg and $screen-lg-desktop as of v3.0.1
  238. // $screen-lg: 1200px;
  239. // $screen-lg-min: $screen-lg;
  240. // $screen-lg-desktop: $screen-lg-min;
  241. //
  242. // // So media queries don't overlap when required, provide a maximum
  243. // $screen-xs-max: ($screen-sm-min - 1);
  244. // $screen-sm-max: ($screen-md-min - 1);
  245. // $screen-md-max: ($screen-lg-min - 1);
  246. //
  247. //
  248. // // Grid system
  249. // // --------------------------------------------------
  250. //
  251. // // Number of columns in the grid system
  252. // $grid-columns: 12;
  253. // // Padding, to be divided by two and applied to the left and right of all columns
  254. // $grid-gutter-width: 30px;
  255. // // Point at which the navbar stops collapsing
  256. // $grid-float-breakpoint: $screen-sm-min;
  257. //
  258. //
  259. // // Navbar
  260. // // -------------------------
  261. //
  262. // // Basics of a navbar
  263. // $navbar-height: 50px;
  264. // $navbar-margin-bottom: $line-height-computed;
  265. // $navbar-border-radius: $border-radius-base;
  266. // $navbar-padding-horizontal: floor($grid-gutter-width / 2);
  267. // $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2);
  268. //
  269. // $navbar-default-color: #777;
  270. // $navbar-default-bg: #f8f8f8;
  271. // $navbar-default-border: darken($navbar-default-bg, 6.5%);
  272. //
  273. // // Navbar links
  274. // $navbar-default-link-color: #777;
  275. // $navbar-default-link-hover-color: #333;
  276. // $navbar-default-link-hover-bg: transparent;
  277. // $navbar-default-link-active-color: #555;
  278. // $navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%);
  279. // $navbar-default-link-disabled-color: #ccc;
  280. // $navbar-default-link-disabled-bg: transparent;
  281. //
  282. // // Navbar brand label
  283. // $navbar-default-brand-color: $navbar-default-link-color;
  284. // $navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%);
  285. // $navbar-default-brand-hover-bg: transparent;
  286. //
  287. // // Navbar toggle
  288. // $navbar-default-toggle-hover-bg: #ddd;
  289. // $navbar-default-toggle-icon-bar-bg: #ccc;
  290. // $navbar-default-toggle-border-color: #ddd;
  291. //
  292. //
  293. // // Inverted navbar
  294. // //
  295. // // Reset inverted navbar basics
  296. // $navbar-inverse-color: $gray-light;
  297. // $navbar-inverse-bg: #222;
  298. // $navbar-inverse-border: darken($navbar-inverse-bg, 10%);
  299. //
  300. // // Inverted navbar links
  301. // $navbar-inverse-link-color: $gray-light;
  302. // $navbar-inverse-link-hover-color: #fff;
  303. // $navbar-inverse-link-hover-bg: transparent;
  304. // $navbar-inverse-link-active-color: $navbar-inverse-link-hover-color;
  305. // $navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%);
  306. // $navbar-inverse-link-disabled-color: #444;
  307. // $navbar-inverse-link-disabled-bg: transparent;
  308. //
  309. // // Inverted navbar brand label
  310. // $navbar-inverse-brand-color: $navbar-inverse-link-color;
  311. // $navbar-inverse-brand-hover-color: #fff;
  312. // $navbar-inverse-brand-hover-bg: transparent;
  313. //
  314. // // Inverted navbar toggle
  315. // $navbar-inverse-toggle-hover-bg: #333;
  316. // $navbar-inverse-toggle-icon-bar-bg: #fff;
  317. // $navbar-inverse-toggle-border-color: #333;
  318. //
  319. //
  320. // // Navs
  321. // // -------------------------
  322. //
  323. // $nav-link-padding: 10px 15px;
  324. // $nav-link-hover-bg: $gray-lighter;
  325. //
  326. // $nav-disabled-link-color: $gray-light;
  327. // $nav-disabled-link-hover-color: $gray-light;
  328. //
  329. // $nav-open-link-hover-color: #fff;
  330. // $nav-open-caret-border-color: #fff;
  331. //
  332. // // Tabs
  333. // $nav-tabs-border-color: #ddd;
  334. //
  335. // $nav-tabs-link-hover-border-color: $gray-lighter;
  336. //
  337. // $nav-tabs-active-link-hover-bg: $body-bg;
  338. // $nav-tabs-active-link-hover-color: $gray;
  339. // $nav-tabs-active-link-hover-border-color: #ddd;
  340. //
  341. // $nav-tabs-justified-link-border-color: #ddd;
  342. // $nav-tabs-justified-active-link-border-color: $body-bg;
  343. //
  344. // // Pills
  345. // $nav-pills-border-radius: $border-radius-base;
  346. // $nav-pills-active-link-hover-bg: $component-active-bg;
  347. // $nav-pills-active-link-hover-color: $component-active-color;
  348. //
  349. //
  350. // // Pagination
  351. // // -------------------------
  352. //
  353. // $pagination-bg: #fff;
  354. // $pagination-border: #ddd;
  355. //
  356. // $pagination-hover-bg: $gray-lighter;
  357. //
  358. // $pagination-active-bg: $brand-primary;
  359. // $pagination-active-color: #fff;
  360. //
  361. // $pagination-disabled-color: $gray-light;
  362. //
  363. //
  364. // // Pager
  365. // // -------------------------
  366. //
  367. // $pager-border-radius: 15px;
  368. // $pager-disabled-color: $gray-light;
  369. //
  370. //
  371. // // Jumbotron
  372. // // -------------------------
  373. //
  374. // $jumbotron-padding: 30px;
  375. // $jumbotron-color: inherit;
  376. // $jumbotron-bg: $gray-lighter;
  377. // $jumbotron-heading-color: inherit;
  378. // $jumbotron-font-size: ceil($font-size-base * 1.5);
  379. //
  380. //
  381. // // Form states and alerts
  382. // // -------------------------
  383. //
  384. // $state-success-text: #468847;
  385. // $state-success-bg: #dff0d8;
  386. // $state-success-border: darken(spin($state-success-bg, -10), 5%);
  387. //
  388. // $state-info-text: #3a87ad;
  389. // $state-info-bg: #d9edf7;
  390. // $state-info-border: darken(spin($state-info-bg, -10), 7%);
  391. //
  392. // $state-warning-text: #c09853;
  393. // $state-warning-bg: #fcf8e3;
  394. // $state-warning-border: darken(spin($state-warning-bg, -10), 5%);
  395. //
  396. // $state-danger-text: #b94a48;
  397. // $state-danger-bg: #f2dede;
  398. // $state-danger-border: darken(spin($state-danger-bg, -10), 5%);
  399. //
  400. //
  401. // // Tooltips
  402. // // -------------------------
  403. // $tooltip-max-width: 200px;
  404. // $tooltip-color: #fff;
  405. // $tooltip-bg: #000;
  406. //
  407. // $tooltip-arrow-width: 5px;
  408. // $tooltip-arrow-color: $tooltip-bg;
  409. //
  410. //
  411. // // Popovers
  412. // // -------------------------
  413. // $popover-bg: #fff;
  414. // $popover-max-width: 276px;
  415. // $popover-border-color: rgba(0,0,0,.2);
  416. // $popover-fallback-border-color: #ccc;
  417. //
  418. // $popover-title-bg: darken($popover-bg, 3%);
  419. //
  420. // $popover-arrow-width: 10px;
  421. // $popover-arrow-color: #fff;
  422. //
  423. // $popover-arrow-outer-width: ($popover-arrow-width + 1);
  424. // $popover-arrow-outer-color: rgba(0,0,0,.25);
  425. // $popover-arrow-outer-fallback-color: #999;
  426. //
  427. //
  428. // // Labels
  429. // // -------------------------
  430. //
  431. // $label-default-bg: $gray-light;
  432. // $label-primary-bg: $brand-primary;
  433. // $label-success-bg: $brand-success;
  434. // $label-info-bg: $brand-info;
  435. // $label-warning-bg: $brand-warning;
  436. // $label-danger-bg: $brand-danger;
  437. //
  438. // $label-color: #fff;
  439. // $label-link-hover-color: #fff;
  440. //
  441. //
  442. // // Modals
  443. // // -------------------------
  444. // $modal-inner-padding: 20px;
  445. //
  446. // $modal-title-padding: 15px;
  447. // $modal-title-line-height: $line-height-base;
  448. //
  449. // $modal-content-bg: #fff;
  450. // $modal-content-border-color: rgba(0,0,0,.2);
  451. // $modal-content-fallback-border-color: #999;
  452. //
  453. // $modal-backdrop-bg: #000;
  454. // $modal-header-border-color: #e5e5e5;
  455. // $modal-footer-border-color: $modal-header-border-color;
  456. //
  457. //
  458. // // Alerts
  459. // // -------------------------
  460. // $alert-padding: 15px;
  461. // $alert-border-radius: $border-radius-base;
  462. // $alert-link-font-weight: bold;
  463. //
  464. // $alert-success-bg: $state-success-bg;
  465. // $alert-success-text: $state-success-text;
  466. // $alert-success-border: $state-success-border;
  467. //
  468. // $alert-info-bg: $state-info-bg;
  469. // $alert-info-text: $state-info-text;
  470. // $alert-info-border: $state-info-border;
  471. //
  472. // $alert-warning-bg: $state-warning-bg;
  473. // $alert-warning-text: $state-warning-text;
  474. // $alert-warning-border: $state-warning-border;
  475. //
  476. // $alert-danger-bg: $state-danger-bg;
  477. // $alert-danger-text: $state-danger-text;
  478. // $alert-danger-border: $state-danger-border;
  479. //
  480. //
  481. // // Progress bars
  482. // // -------------------------
  483. // $progress-bg: #f5f5f5;
  484. // $progress-bar-color: #fff;
  485. //
  486. // $progress-bar-bg: $brand-primary;
  487. // $progress-bar-success-bg: $brand-success;
  488. // $progress-bar-warning-bg: $brand-warning;
  489. // $progress-bar-danger-bg: $brand-danger;
  490. // $progress-bar-info-bg: $brand-info;
  491. //
  492. //
  493. // // List group
  494. // // -------------------------
  495. // $list-group-bg: #fff;
  496. // $list-group-border: #ddd;
  497. // $list-group-border-radius: $border-radius-base;
  498. //
  499. // $list-group-hover-bg: #f5f5f5;
  500. // $list-group-active-color: $component-active-color;
  501. // $list-group-active-bg: $component-active-bg;
  502. // $list-group-active-border: $list-group-active-bg;
  503. //
  504. // $list-group-link-color: #555;
  505. // $list-group-link-heading-color: #333;
  506. //
  507. //
  508. // // Panels
  509. // // -------------------------
  510. // $panel-bg: #fff;
  511. // $panel-inner-border: #ddd;
  512. // $panel-border-radius: $border-radius-base;
  513. // $panel-footer-bg: #f5f5f5;
  514. //
  515. // $panel-default-text: $gray-dark;
  516. // $panel-default-border: #ddd;
  517. // $panel-default-heading-bg: #f5f5f5;
  518. //
  519. // $panel-primary-text: #fff;
  520. // $panel-primary-border: $brand-primary;
  521. // $panel-primary-heading-bg: $brand-primary;
  522. //
  523. // $panel-success-text: $state-success-text;
  524. // $panel-success-border: $state-success-border;
  525. // $panel-success-heading-bg: $state-success-bg;
  526. //
  527. // $panel-warning-text: $state-warning-text;
  528. // $panel-warning-border: $state-warning-border;
  529. // $panel-warning-heading-bg: $state-warning-bg;
  530. //
  531. // $panel-danger-text: $state-danger-text;
  532. // $panel-danger-border: $state-danger-border;
  533. // $panel-danger-heading-bg: $state-danger-bg;
  534. //
  535. // $panel-info-text: $state-info-text;
  536. // $panel-info-border: $state-info-border;
  537. // $panel-info-heading-bg: $state-info-bg;
  538. //
  539. //
  540. // // Thumbnails
  541. // // -------------------------
  542. // $thumbnail-padding: 4px;
  543. // $thumbnail-bg: $body-bg;
  544. // $thumbnail-border: #ddd;
  545. // $thumbnail-border-radius: $border-radius-base;
  546. //
  547. // $thumbnail-caption-color: $text-color;
  548. // $thumbnail-caption-padding: 9px;
  549. //
  550. //
  551. // // Wells
  552. // // -------------------------
  553. // $well-bg: #f5f5f5;
  554. //
  555. //
  556. // // Badges
  557. // // -------------------------
  558. // $badge-color: #fff;
  559. // $badge-link-hover-color: #fff;
  560. // $badge-bg: $gray-light;
  561. //
  562. // $badge-active-color: $link-color;
  563. // $badge-active-bg: #fff;
  564. //
  565. // $badge-font-weight: bold;
  566. // $badge-line-height: 1;
  567. // $badge-border-radius: 10px;
  568. //
  569. //
  570. // // Breadcrumbs
  571. // // -------------------------
  572. // $breadcrumb-bg: #f5f5f5;
  573. // $breadcrumb-color: #ccc;
  574. // $breadcrumb-active-color: $gray-light;
  575. // $breadcrumb-separator: "/";
  576. //
  577. //
  578. // // Carousel
  579. // // ------------------------
  580. //
  581. // $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6);
  582. //
  583. // $carousel-control-color: #fff;
  584. // $carousel-control-width: 15%;
  585. // $carousel-control-opacity: .5;
  586. // $carousel-control-font-size: 20px;
  587. //
  588. // $carousel-indicator-active-bg: #fff;
  589. // $carousel-indicator-border-color: #fff;
  590. //
  591. // $carousel-caption-color: #fff;
  592. //
  593. //
  594. // // Close
  595. // // ------------------------
  596. // $close-font-weight: bold;
  597. // $close-color: #000;
  598. // $close-text-shadow: 0 1px 0 #fff;
  599. //
  600. //
  601. // // Code
  602. // // ------------------------
  603. // $code-color: #c7254e;
  604. // $code-bg: #f9f2f4;
  605. //
  606. // $pre-bg: #f5f5f5;
  607. // $pre-color: $gray-dark;
  608. // $pre-border-color: #ccc;
  609. // $pre-scrollable-max-height: 340px;
  610. //
  611. // // Type
  612. // // ------------------------
  613. // $text-muted: $gray-light;
  614. // $abbr-border-color: $gray-light;
  615. // $headings-small-color: $gray-light;
  616. // $blockquote-small-color: $gray-light;
  617. // $blockquote-border-color: $gray-lighter;
  618. // $page-header-border-color: $gray-lighter;
  619. //
  620. // // Miscellaneous
  621. // // -------------------------
  622. //
  623. // // Hr border color
  624. // $hr-border: $gray-lighter;
  625. //
  626. // // Horizontal forms & lists
  627. // $component-offset-horizontal: 180px;
  628. //
  629. //
  630. // // Container sizes
  631. // // --------------------------------------------------
  632. //
  633. // // Small screen / tablet
  634. // $container-tablet: ((720px + $grid-gutter-width));
  635. // $container-sm: $container-tablet;
  636. //
  637. // // Medium screen / desktop
  638. // $container-desktop: ((940px + $grid-gutter-width));
  639. // $container-md: $container-desktop;
  640. //
  641. // // Large screen / wide desktop
  642. // $container-large-desktop: ((1140px + $grid-gutter-width));
  643. // $container-lg: $container-large-desktop;