Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
// Bootstrap variables
2
$white:    #fff !default;
3
$gray-100: #f8f9fa !default;
4
$gray-200: #e9ecef !default;
5
$gray-300: #dee2e6 !default;
6
$gray-400: #ced4da !default;
7
$gray-500: #8f959e !default;
8
$gray-600: #6a737b !default;
9
$gray-700: #495057 !default;
10
$gray-800: #343a40 !default;
11
$gray-900: #1d2125 !default;
12
$black:    #000 !default;
13
 
14
$blue:    #0f6cbf !default;
15
$indigo:  #6610f2 !default;
16
$purple:  #613d7c !default;
17
$pink:    #e83e8c !default;
18
$red:     #ca3120 !default;
19
$orange:  #f0ad4e !default;
20
$yellow:  #ff7518 !default;
21
$green:   #357a32 !default;
22
$teal:    #20c997 !default;
23
$cyan:    #008196 !default;
24
 
25
$primary:       $blue !default;
26
$success:       $green !default;
27
$info:          $cyan !default;
28
$warning:       $orange !default;
29
$danger:        $red !default;
30
$secondary:     $gray-400 !default;
31
 
32
$info-outline:    #1f7e9a;
33
$warning-outline: #a6670e;
34
 
35
// Tables
36
$table-accent-bg:             rgba($black, .03) !default;
37
 
38
// Options
39
$enable-rounded: true !default;
40
$enable-responsive-font-sizes: true !default;
41
 
42
// Body
43
$body-color:    $gray-900 !default;
44
 
45
// Fonts
46
$font-size-base: 0.9375rem !default;
47
$rfs-base-font-size: 0.9rem !default;
48
$headings-font-weight:   300 !default;
49
 
50
// Navbar
51
$navbar-dark-hover-color:           rgba($white, 1) !default;
52
$navbar-light-color:                rgba($black, 0.6) !default;
53
$navbar-light-hover-color:          rgba($black, .9) !default;
54
 
55
// Breadcrumbs
56
$breadcrumb-padding-y:              .25rem !default;
57
$breadcrumb-padding-x:              0 !default;
58
$breadcrumb-item-padding:           .5rem !default;
59
$breadcrumb-margin-bottom:          0 !default;
60
$breadcrumb-bg:                     transparent !default;
61
$breadcrumb-divider: "/" !default;
62
$breadcrumb-divider-rtl: "/" !default;
63
 
64
// Alerts
65
$alert-border-width:                0 !default;
66
 
67
$card-group-margin: .25rem;
68
 
69
// Toasts
70
$toast-color:                       $white !default;
71
$toast-background-color:            rgba($gray-900, .95) !default;
72
$toast-header-color:                $gray-100 !default;
73
$toast-header-background-color:     rgba($white, .1) !default;
74
 
75
$input-btn-focus-color: rgba($primary, .75) !default;
76
 
77
$input-border-color: $gray-500 !default;
78
 
79
$dropdown-link-hover-color: $white;
80
$dropdown-link-hover-bg: $primary;
81
 
82
// stylelint-disable
83
$theme-colors: () !default;
84
$theme-colors: map-merge((
85
    primary: $primary,
86
    secondary: $secondary,
87
    success: $success,
88
    info: $info,
89
    warning: $warning,
90
    danger: $danger,
91
), $theme-colors);
92
// stylelint-enable
93
 
94
$spacer: 1rem !default;
95
$spacers: (
96
    0: 0,
97
    1: ($spacer * .25),
98
    2: ($spacer * .5),
99
    3: $spacer,
100
    4: ($spacer * 1.5),
101
    5: ($spacer * 2),
102
    6: ($spacer * 3)
103
) !default;
104
 
105
// Import FontAwesome.
106
@import "fontawesome";
107
 
108
// Import All of Bootstrap
109
@import "bootstrap";
110
 
111
// Import Core moodle CSS
112
@import "moodle";
113
 
114
body {
115
    -webkit-font-smoothing: antialiased;
116
    -moz-osx-font-smoothing: grayscale;
117
}
118
 
119
// Preset CSS
120
.navbar {
121
    box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
122
}
123
 
124
// Rounded user pictures
125
.userpicture {
126
    border-radius: 50%;
127
}
128
 
129
.block {
130
    background-color: $gray-100;
131
}
132
 
133
#page-my-index {
134
    background-color: $white;
135
}
136
// Reset the default styling back to the bootstrap defaults for
137
// the secondary outline button because gray-200 is much too light
138
// for an outline button.
139
.btn-outline-secondary {
140
    @include button-outline-variant($gray-600);
141
    border-color: $gray-600;
142
}
143
 
144
.btn-outline-info {
145
    @include button-outline-variant($info-outline);
146
}
147
 
148
.btn-outline-warning {
149
    @include button-outline-variant($warning-outline);
150
}