-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.css
52 lines (43 loc) · 1.03 KB
/
index.css
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
body {
margin: 0;
font-family: Roboto, sans-serif;
transition: opacity ease-in 0.2s;
}
a {
text-decoration: none;
}
[slot="title"] {
font-family: "Roboto Mono", monospace;
-webkit-font-smoothing: antialiased;
font-size: 1.25rem;
line-height: 2rem;
letter-spacing: 0.4px;
}
.white {
--mdc-theme-primary: white;
--mdc-button-outline-color: white;
color: white;
}
mwc-switch {
--mdc-switch-selected-handle-color: teal;
--mdc-switch-selected-track-color: lightseagreen;
/* ... additional states (hover/focus/pressed) + state-layer element */
--mdc-switch-unselected-handle-color: goldenrod;
--mdc-switch-unselected-track-color: palegoldenrod;
--mdc-switch-unselected-icon-color: black;
/* ... additional states (hover/focus/pressed) + state-layer element */
}
.fancy2 {
color: #9fe079;
--mdc-icon-size: 32px;
}
mwc-icon-button-toggle {
--mdc-icon-size: 64px
}
.tab-container {
padding: 20px;
display: none;
}
.tab-container-active {
display: block;
}