_scaffolding.scss
1.27 KB
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
/* $scaffolding
------------------------------------------*/
html {
font-size: 16px;
}
html, body {
width: 100%;
height: 100%;
position: relative;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-touch-callout: none;
min-height: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
margin: 0;
padding: 0;
font-weight: $font-weight-base;
@include mat-typography-level-to-styles($config, body-1);
color: rgba(mat-color($foreground, base), 0.87);
line-height: 1.5;
font-family: $mat-font-family;
&.pace-done {
background: #6b6b6b;
}
}
[tabindex='-1']:focus {
outline: none;
}
select,
button,
textarea,
input {
vertical-align: baseline;
}
html, body {
&[dir=rtl], &[dir=ltr] {
unicode-bidi: embed
}
}
bdo[dir=rtl] {
direction: rtl;
unicode-bidi: bidi-override;
}
bdo[dir=ltr] {
direction: ltr;
unicode-bidi: bidi-override;
}
.mat-card.settings-panel {
position: fixed;
bottom: 6px;
right: 6px;
width: 250px;
z-index: 9;
}
.demo-checkbox {
.mat-checkbox, .mat-checkbox-layout {
width: 100%;
}
.mat-checkbox-layout .mat-checkbox-label {
flex: 1;
box-sizing: border-box;
-webkit-box-flex: 1;
}
}