Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/* ==========================================================================
2
   Colors
3
 
4
   This file is exclusively intended for setting up variables
5
   Never add styles directly to this file
6
   ========================================================================== */
7
 
8
// Grays
9
// -------------------------
10
 
11
$gray-darker:           #333;
12
$gray-dark:             #555;
13
$gray:                  #aaa;
14
$gray-light:            #ddd;
15
$gray-lighter:          #eee;
16
 
17
// Primary
18
// -------------------------
19
$primary:               #428bca;
20
$primary-light:         #92bce0;
21
$primary-lighter:       #e1edf7;
22
 
23
// Forms
24
// -------------------------
25
$form-blue:             #66afe9;
26
 
27
// Blues
28
// -------------------------
29
$blue-dark:             #2274c9;
30
$blue-dark-hover:       #1e68b4;
31
$blue:                  #3F8EDF;
32
$blue-hover:            #2981db;
33
 
34
// States
35
// -------------------------
36
 
37
$success:               $blue;
38
$success-hover:         $blue-hover;
39
$success-border:        $blue-dark;
40
$success-border-hover:  $blue-dark-hover;
41
 
42
$warning:               #f0ad4e;
43
$danger:                #d9534f;
44
$info:                  #5bc0de;
45
 
46
// Scaffolding
47
// -------------------------
48
 
49
$body-bg:               #fff;
50
$text-color:            $gray-darker;
51
 
52
// Links
53
// -------------------------
54
 
55
$link-color:            $primary;
56
$link-hover-color:      darken($link-color, 15%);
57
 
58
// Hr border color
59
// -------------------------
60
 
61
$hr-border:             $gray-light;