-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathevoke.html
66 lines (53 loc) · 1.37 KB
/
evoke.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Evoke</title>
<style>
body {
margin: 4em;
line-height: 1.5;
display: flex;
flex-direction: row;
gap: 2em;
/* Otherwise the padding-inline-end doesn't come into play. */
min-width: min-content;
padding-inline-end: 2em;
}
p {
margin-block: 0;
min-width: min(80vw, 24em);
}
h2 {
margin-block: 1em;
min-width: 6em;
}
p {
text-align: justify;
}
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(41, 41, 72);
color: ghostwhite;
}
}
</style>
</head>
<body>
<h2>Evoke</h2>
<p>
Here is a style of rhetoric I’ve been thinking about. No convincing, no agenda,
no audience in mind. State the premises, sketch out the interconnections, don’t
draw out the conclusions. Such a style feels aphoristic, vague and pretentious
even. That’s a bit sad, I wish it didn’t come off that way.
</p>
<p>
Art doesn’t limit imagination, but sometimes warrants too much from it. Words
provide better precision, but sometimes limit the imagination too much.
Examples, analogies and conclusions make it harder for the reader to see further
than (at best) the author's mind. The aim is not to convey meaning (whatever
that means). The aim is to trigger analogous processes in the reader’s mind.
</p>
</body>
</html>