blob: 83bd85372ead94a6bd6957fb4200fcb2d3f1e8f6 (
plain)
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
|
/*******************************************************************************
Standard-Stylesheet für Stud.IP im Safire-Design
- use http://www.colorzilla.com/gradient-editor/ for gradients
*******************************************************************************/
@import "mixins";
@import "scss/variables";
@import "scss/breakpoints";
@import "scss/visibility";
@import "scss/actionmenu";
@import "scss/admin-courses";
@import "scss/admission";
@import "scss/avatar";
@import "scss/blubber";
@import "scss/contentbar";
@import "scss/contents";
@import "scss/courseware";
@import "scss/dates";
@import "scss/files";
@import "scss/forum";
@import "scss/fullscreen";
@import "scss/progress_indicator.scss";
@import "scss/my_courses";
@import "scss/oer";
@import "scss/report";
@import "scss/resources";
@import "scss/sidebar";
@import "scss/tooltip";
@import "scss/table_of_contents";
@import "scss/wiki";
@import "scss/select";
@import "scss/grid";
// Class for DOM elements that should only be visible to Screen readers
.sr-only {
border: 0;
clip: rect(0 0 0 0);
clip-path: inset(100%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
white-space: nowrap;
width: 1px;
}
|