-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmoodle.scss
113 lines (87 loc) · 2 KB
/
moodle.scss
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Cosmo 4.0.0
// Bootswatch
//
// Color system
//
$white: #fff !default;
$gray-100: #f8f9fa !default;
$gray-200: #e9ecef !default;
$gray-300: #dee2e6 !default;
$gray-400: #ced4da !default;
$gray-500: #adb5bd !default;
$gray-600: #868e96 !default;
$gray-700: #495057 !default;
$gray-800: #373a3c !default;
$gray-900: #212529 !default;
$black: #000 !default;
$blue: #2780E3 !default;
$indigo: #6610f2 !default;
$purple: #613d7c !default;
$pink: #e83e8c !default;
$red: #FF0039 !default;
$orange: #f0ad4e !default;
$yellow: #FF7518 !default;
$green: #3FB618 !default;
$teal: #20c997 !default;
$cyan: #9954BB !default;
$primary: $blue !default;
$secondary: $gray-800 !default;
$success: $green !default;
$info: $cyan !default;
$warning: $yellow !default;
$danger: $red !default;
$light: $gray-100 !default;
$dark: $gray-800 !default;
// Options
$enable-rounded: false !default;
// Body
$body-color: $gray-800 !default;
// Fonts
$font-size-base: 0.9375rem !default;
$headings-font-weight: 300 !default;
// Navbar
$navbar-dark-hover-color: rgba($white,1) !default;
$navbar-light-hover-color: rgba($black,.9) !default;
// Alerts
$alert-border-width: 0 !default;
// Progress bars
$progress-height: 1rem !default;
$theme-colors: (
primary: #3097D1,
secondary: $gray-200,
success: #5cb85c,
info: #5bc0de,
warning: #f0ad4e,
danger: #d9534f,
light: $gray-100,
dark: $gray-800
);
// Import FontAwesome.
@import "fontawesome";
// Import All of Bootstrap
@import "bootstrap";
// Import Core moodle CSS
@import "moodle";
// Moodle 4.0.0
body {
-webkit-font-smoothing: antialiased;
}
.progress {
@include box-shadow(none);
.progress-bar {
font-size: 8px;
line-height: 8px;
}
}
.navbar {
box-shadow: 0 2px 4px rgba(0,0,0,.08);
}
.filemanager-container, .filepicker-filelist {
@extend .border;
}
/**
* User picture.
*/
.userpicture {
border-radius: 50%;
}