-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (98 loc) · 2.05 KB
/
style.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
display: grid;
justify-content: center;
text-align: center;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: var(--md-sys-color-background);
color: var(--md-sys-color-primary);
}
.code {
background-color: var(--md-sys-color-surface-container);
color: var(--md-sys-color-primary);
padding: 20px;
border-radius: 5px;
margin-block-start: 25px;
}
main {
padding: 20px 10px;
}
.description {
text-align: start;
background-color: var(--md-sys-color-surface-container);
padding: 20px;
border-inline-start: 4px solid var(--md-sys-color-primary);
margin-block-end: 30px;
line-height: 1.6;
}
.description a {
color: var(--md-sys-color-tertiary);
}
mark {
background-color: transparent;
}
mark.green {
color: #A8C966
}
mark.red {
color: #e46666;
}
.container {
position: relative;
display: inline-block;
}
.arrow {
position: absolute;
inset-block-start: 50%;
inset-inline-start: 50%;
translate: -50% -50%;
background-color: var(--md-sys-color-background);
border-radius: 4px;
opacity: 0.8;
}
.triangleY {
position: absolute;
inset-inline-start: -15px;
inset-block-start: -8px;
color: var(--md-sys-color-error);
}
.triangleX {
position: absolute;
inset-inline-start: -8px;
inset-block-end: -15px;
color: var(--md-sys-color-error);
}
.examples {
margin: 20px
}
.examples md-chip-set {
justify-content: center;
}
canvas {
border-radius: 5px;
}
fieldset {
padding-block-end: 30px;
}
.slider {
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
margin: 20px;
}
.radio-group {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 5px;
margin-block-end: 30px;
}
.radio-group label {
padding-inline-end: 15px;
padding-block: 5px;
}
.offset-field,
.blur-value-field {
margin-block-start: 20px;
}