_utilities.scss 22 KB

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