source: main/trunk/model-interfaces-dev/atea/korero-maori-asr/src/styles/theme.scss@ 35449

Last change on this file since 35449 was 35449, checked in by cstephen, 3 years ago

Add progress bars

File size: 1009 bytes
Line 
1////
2/// Applies default themes and styles.
3////
4
5@use "./_material.scss";
6@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@300;400;700&display=swap');
7@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
8
9*,
10*::before,
11*::after {
12 box-sizing: border-box;
13}
14
15:root {
16 --monospace-font: 1rem 'Roboto Mono', sans-serif;
17 --page-bg-color: #f7f4f0;
18}
19
20body {
21 background-color: var(--page-bg-color);
22 color: var(--body-color);
23 font-family: 'Roboto', sans-serif;
24
25 margin: 0;
26 padding: 0;
27
28 -webkit-font-smoothing: antialiased;
29 -moz-osx-font-smoothing: grayscale;
30}
31
32hr {
33 @extend .divider;
34}
35
36input[type="checkbox"] {
37 @extend .switch;
38}
39
40.btn-primary .material-icons {
41 margin-right: 0.3em;
42}
43
44.btn-fab .material-icons {
45 margin-right: 0em;
46}
47
48/* Material Design Icon sizes */
49
50.mdi-s {
51 font-size: 18px;
52}
53
54.mdi-m {
55 font-size: 24px;
56}
57
58.mdi-l {
59 font-size: 36px;
60}
61
62.mdi-xl {
63 font-size: 48px;
64}
Note: See TracBrowser for help on using the repository browser.