-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path_my-bootstrap-vars.scss
More file actions
36 lines (32 loc) · 1.37 KB
/
_my-bootstrap-vars.scss
File metadata and controls
36 lines (32 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Custom Codehero Colors
// ------------------------------
$orange-codehero: rgba(211, 84, 0, 1);
$white-codehero: rgba(255, 255, 255, 1);
$code-bg: rgba(0, 0, 0, 0.04);
$post-link-color: rgba(230, 126, 34, 1);
$article-title-color: rgb(85, 85, 85);
$article-title-hover-color: rgb(25, 193, 195);
$article-font-color: rgb(85, 85, 85);
// Tamaño de los thumbnails.
// ------------------------------
$ancho-thumbnail-de-series: 270px;
$alto-thumbnail-de-series: 200px;
$thumbnail-border-radius: 0.75rem;
// Bootstrap font location.
// ------------------------------
$navbar-height: 85px;
$icon-font-path: "fonts/bootstrap/";
$icon-font-name: "glyphicons-halflings-regular";
// Import the fonts
@font-face {
font-family: 'Glyphicons Halflings';
src: url(asset_path('#{$icon-font-path}#{$icon-font-name}.eot'));
src: url(asset_path('#{$icon-font-path}#{$icon-font-name}.eot?#iefix')) format('embedded-opentype'),
url(asset_path('#{$icon-font-path}#{$icon-font-name}.woff')) format('woff'),
url(asset_path('#{$icon-font-path}#{$icon-font-name}.ttf')) format('truetype'),
url(asset_path('#{$icon-font-path}#{$icon-font-name}.svg#glyphicons_halflingsregular')) format('svg');
}
// Pagination
// -------------------------
$pagination-border: $orange-codehero !default;
$pagination-active-bg: $orange-codehero !default;