You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document describes the GET parameters available for customizing page views.
4
+
5
+
## `/results` Page
6
+
7
+
### `core`
8
+
9
+
-**Type**: Flag (presence check)
10
+
-**Default**: Not set
11
+
-**Effect**: Enables core view mode, which removes page padding, removes the page title, and applies bare section styling for embedded display.
12
+
13
+
### `padding`
14
+
15
+
-**Type**: Number (pixels)
16
+
-**Default**: `0`
17
+
-**Effect**: Applies padding around the content when in core view mode. Only active when `core` parameter is present.
18
+
19
+
### `scale`
20
+
21
+
-**Type**: Number (decimal)
22
+
-**Default**: `1`
23
+
-**Effect**: Applies CSS transform scale to the content. Only active when `core` parameter is present.
24
+
25
+
### `hideResults`
26
+
27
+
-**Type**: Flag (presence check)
28
+
-**Default**: Not set
29
+
-**Effect**: Hides vote counts, percentages, and question notes. Displays question marks instead of results. Useful for presentations where results should be revealed later.
30
+
31
+
### Examples
32
+
33
+
```text
34
+
/results
35
+
Standard results view with full UI.
36
+
37
+
/results?core
38
+
Core view with minimal UI, no padding, normal scale.
39
+
40
+
/results?core&padding=20&scale=0.9
41
+
Core view with 20px padding and 90% scale.
42
+
43
+
/results?core&hideResults
44
+
Core view with results hidden (shows "?" instead of numbers).
45
+
46
+
/results?core&padding=30&scale=1.2&hideResults
47
+
Core view with 30px padding, 120% scale, and hidden results.
48
+
```
49
+
50
+
## `/emojis` Page
51
+
52
+
### `scale`
53
+
54
+
-**Type**: Number (decimal)
55
+
-**Default**: `1`
56
+
-**Effect**: Scales emoji size and adjusts spawn padding to prevent emojis from appearing outside viewport.
57
+
58
+
### `transparency`
59
+
60
+
-**Type**: Number (decimal, clamped to max 1)
61
+
-**Default**: `1`
62
+
-**Effect**: Sets emoji opacity. Values are clamped to maximum 1.0 (fully opaque).
63
+
64
+
### Examples
65
+
66
+
```text
67
+
/emojis
68
+
Standard emoji display with normal size and full opacity.
0 commit comments