Welcome to mirror list, hosted at ThFree Co, Russian Federation.

themehighcontrast.scss « css « accessibility « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8149e7669f5cc9678bb5a4b01a2fa7df474fa120 (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
49
50
51
52
53
54
55
56
57
58
// Fonts
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: normal;
	src: local('Open Sans'), local('OpenSans'),
		url('../../../core/fonts/OpenSans-Regular.woff') format('woff');
}

/* overriding default light */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: local('Open Sans'), local('OpenSans'),
	url('../../../core/fonts/OpenSans-Regular.woff') format('woff');
}

@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 500 700;
	src: local('Open Sans Bold'), local('OpenSans-Bold'),
		url('../../../core/fonts/OpenSans-Bold.woff') format('woff');
}

// SCSS variables
$color-main-text: #000;
$color-main-background: #fff;

$color-background-dark: darken($color-main-background, 30%);
$color-background-darker: darken($color-main-background, 30%);

$color-text-maxcontrast: $color-main-text;
$color-text-light: $color-main-text;
$color-text-lighter: $color-main-text;

$color-loading-light: #ddd;
$color-loading-dark: #000;

$color-box-shadow: $color-main-text;

$color-border: darken($color-main-background, 50%);
$color-border-dark: darken($color-main-background, 50%);

$font-face: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif;


// Font weight reset
body {
	font-weight: 400;
}

// Opacity trick
* {
	opacity: 1 !important;
}