aboutsummaryrefslogtreecommitdiff
path: root/pray/index.html
blob: a89d3718dbb52180b0a5722af848e03cce7a5872 (plain)
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<!DOCTYPE html>
<!--
    SPDX-License-Identifier: CC0-1.0

    Copyright (C) 2022 Wojtek Kosior

    Available under the terms of Creative Commons Zero v1.0 Universal.
  -->
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="Content-Security-Policy" content="script-src 'none'">
    <title>&#x1F64F;</title>
    <link rel="stylesheet" href="/static/normalize.css">
    <style>
      input {
          display: none;
      }

      * {
          color: #777;
      }

      html {
          min-height: 100vh;
          font-family: sans-serif;
      }

      body {
          height: 100%;
          background-color: #eee;
      }

      .header * {
          color: #555;
      }

      #main {
          background-color: white;
      }

      .content {
          max-width: 850px;
          padding: 0px 20px 20px 20px;
          margin: 0 auto;
      }

      .dummy-div {
          height: 1px;
      }

      .content>.header, .content>.center {
          margin-left: 0px;
      }

      .content>* {
          margin-left: 20px;
      }

      .sheet-img {
          box-shadow: 10px 10px 8px #888888;
          border: 1px solid #eee;
          -webkit-backface-visibility: hidden;
          background: white;
          margin-bottom: 40px;
          max-width: 40vw;
          height: auto;
      }

      @media screen and (max-width: 320px) {
          .sheet-img {
              max-width: 37vw;
          }
      }
      .sheet-front {
          position: relative;
          left: -0px;
          transform: rotate(-8deg);
      }

      .sheet-back {
          position: relative;
          left: -20px;
          top: 20px;
          transform: rotate(15deg);
      }

      footer {
          border-top: 1px solid #888;
          height: 100%;
      }

      footer p {
          max-width: 850px;
          margin-left: auto;
          margin-right: auto;
      }

      h1 {
          text-align: center;
      }

      h2 {
          padding-top: 10px;
          border-top: 1px solid #ccc;
      }

      .center {
          text-align: center;
      }

      aside {
          display: inline-block;
          padding: 10px;
          border-radius: 4px;
          background-color: #acf;
          text-color: #555;
      }

      .lang-switch {
          position: fixed;
          right: 13px;
          top: 70px;
          text-align: center;
          letter-spacing: -1px;
          z-index: 1;
      }

      .lang-code {
          background: radial-gradient(#ffff 45%, #fff6 60%, #fff0 70%);
      }

      label.lang-label {
          display: block;
          background: #555;
          height: 50px;
          width: 23px;
          padding: 2px;
          border: solid 2px #888;
          border-radius: 17px;
          margin: 2px 0;
      }

      .lang-switch-slide {
          height: 100%;
          width: 100%;
          position:relative;
      }

      .lang-switch-circle {
          background: #66C;
          width: 17px;
          height: 17px;
          border: solid 3px #888;
          border-radius: 13px;
          transition: top 0.15s ease-out;
      }

      #lang:not(:checked)~* .lang-switch-circle {
          position: absolute;
          top: 0;
      }
      #lang:checked~* .lang-switch-circle {
          position: absolute;
          top: 27px;
      }

      #lang:not(:checked)~* .bold-pl {
          font-weight: bold;
      }
      #lang:checked~* .bold-en {
          font-weight: bold;
      }

      #lang:not(:checked)~* .en-only {
          display: none;
      }
      #lang:checked~* .pl-only {
          display: none;
      }
    </style>
  </head>
  <body>
    <input id="lang" type="checkbox">
    <div class="lang-switch">
      <div class="lang-code bold-pl">
        PL
      </div>
      <label for="lang" class="lang-label">
        <div class="lang-switch-slide">
          <div class="lang-switch-circle">
          </div>
        </div>
      </label>
      <div class="lang-code bold-en">
        EN
      </div>
    </div>
    <div id="main">
      <div class="content">
        <div class="dummy-div"></div>
        <div class="header">
          <h1 class="pl-only">Kartki wzajemnej modlitwy</h1>
          <h1 class="en-only">Mutual prayer sheets</h1>
        </div>
        <div class="center">
          <img src="/sheet_front.png" class="sheet-img sheet-front pl-only"></img>
          <img src="/en/sheet_front.png" class="sheet-img sheet-front en-only"></img>
          <img src="/sheet_back.png" class="sheet-img sheet-back pl-only"></img>
          <img src="/en/sheet_back.png" class="sheet-img sheet-back en-only"></img>
        </div>
        <div>
          <p class="pl-only">
            Właśnie trafiłeś/aś na stronę karteczek wzajemnej modlitwy.
            To wydrukowane z&nbsp;dostępnego <a href="/inten.pdf">tutaj</a>
            pliku pdf karteczki, na których można wpisywać intencje modlitewne.
          </p>
          <p class="en-only">
            You've reached the website of mutual prayer sheets.
            These are sheets printed from <a href="/en/inten.pdf">this</a> pdf
            file, they are meant for writing prayer intentions on.
          </p>
          <p class="pl-only">
            Pomysł z&nbsp;karteczkami opiera się na tym, że osoba, która
            znajdzie się w&nbsp;posiadaniu kartki, dopisuje do niej jakąś swoją
            intencję.
            Następnie, ta osoba (opcjonalnie) stawia znaczek przy jednej lub
            kilku wcześniej wpisanych intencjach, za które decyduje się
            pomodlić.
            Na koniec kartka jest przekazywana kolejnej osobie &#x1F642;
          </p>
          <p class="en-only">
            The sheets idea is as follows: whoever comes into possession of a
            sheet, adds one intention to it.
            Then that person (optionally) chooses one or more intentions to pray
            for and adds a tally mark next to each of them.
            At the end, the sheet gets passed to another person &#x1F642;
          </p>
          <p class="pl-only">
            Każdy, przez kogo „przechodzi” karteczka, jest zachęcony do
            wydrukowania i&nbsp;puszczenia w&nbsp;obieg jednej lub dwóch
            dodatkowych (dla ułatwienia na szablonie kartki znajdują się dwie
            mniejsze, do odcięcia).
            W&nbsp;ten sposób karteczki mogą się (w&nbsp;teorii)
            rozprzestrzeniać bardzo szybko &#x1F603;
          </p>
          <p class="en-only">
            Everyone through whom a sheet "passes" is encouraged to print and
            give away one or more additional sheets (for convenience, on the
            print template there are two smaller sheets that can be cut off).
            This way sheets can (in theory) spread very quickly &#x1F603;
          </p>
          <p class="pl-only">
            Karteczki zostały sporządzone w&nbsp;LaTeX'u, pliki źródłowe można
            znaleźć
            w&nbsp;<a href="https://git.koszko.org/change-world-sheets/">tym repozytorium gitowym</a>.
          </p>
          <p class="en-only">
            Sheets have been created in LaTeX, source files can be found in
            <a href="https://git.koszko.org/change-world-sheets/">this git repository</a>.
          </p>
          <p class="pl-only">
            Oprócz karteczek modlitwy istnieją także podobne w&nbsp;zamyśle
            karteczki zmieniania świata.
            Więcej o&nbsp;nich możesz dowiedzieć się
            <a href="https://sheets.koszko.org">tutaj</a>.
          </p>
          <p class="en-only">
            Besides prayer sheets, there also exist conceptually similar world
            changing sheets.
            You can learn more about them
            <a href="https://sheets.koszko.org/en">here</a>.
          </p>
        </div>
      </div>
    </div>
    <footer>
      <p class="legal-license pl-only" style="white-space: normal; text-align: center;">
        Ta strona wykorzystuje stylowanie
        <a href="https://github.com/necolas/normalize.css">Normalize CSS</a>
        dostępne na
        <a href="/static/normalize-mit-license.txt">licencji w&nbsp;stylu X11</a>.
      </p>
      <p class="legal-license en-only" style="white-space: normal; text-align: center;">
        This site utilizes
        <a href="https://github.com/necolas/normalize.css">Normalize CSS</a>
        styling available under
        <a href="/static/normalize-mit-license.txt">an X11-style license</a>.
      </p>
      <p class="legal-license pl-only" style="white-space: normal; text-align: center;">
        Reszta jest autorstwa <a href="https://koszko.org/koszko.html">Wojtka</a>,
        dostępna
        <a href="https://git.koszko.org/koszko-org-website/">tutaj</a>
        na warunkach
        <a href="/static/cc0-1.0.txt">CC0</a>.
      </p>
      <p class="legal-license en-only" style="white-space: normal; text-align: center;">
        The rest is made by <a href="https://koszko.org/koszko.html">Wojtek</a>,
        available
        <a href="https://git.koszko.org/sheets-websites/">here</a>
        under the terms of
        <a href="/static/cc0-1.0.txt">CC0</a>.
      </p>
    </footer>
  </body>
</html>