Nexom 1.0.4__py3-none-any.whl → 1.0.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,39 +1,636 @@
1
- body{
2
- width: 100%;
3
- padding: 0;
4
- margin: 0;
1
+ @charset "UTF-8";
2
+ @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
3
+ /* Document
4
+ * ========================================================================== */
5
+ /**
6
+ * Add border box sizing in all browsers (opinionated).
7
+ */
8
+ *,
9
+ ::before,
10
+ ::after {
11
+ box-sizing: border-box;
5
12
  }
6
13
 
7
- header{
8
- width: 100%;
9
- text-align: center;
10
- padding-block: 1rem;
11
- margin-block-end: 1rem;
14
+ /**
15
+ * 1. Add text decoration inheritance in all browsers (opinionated).
16
+ * 2. Add vertical alignment inheritance in all browsers (opinionated).
17
+ */
18
+ ::before,
19
+ ::after {
20
+ text-decoration: inherit; /* 1 */
21
+ vertical-align: inherit; /* 2 */
12
22
  }
13
- .header-title{
14
- font-size: 20px;
15
- font-weight: 500;
23
+
24
+ /**
25
+ * 1. Use the default cursor in all browsers (opinionated).
26
+ * 2. Change the line height in all browsers (opinionated).
27
+ * 3. Use a 4-space tab width in all browsers (opinionated).
28
+ * 4. Remove the grey highlight on links in iOS (opinionated).
29
+ * 5. Prevent adjustments of font size after orientation changes in
30
+ * IE on Windows Phone and in iOS.
31
+ * 6. Breaks words to prevent overflow in all browsers (opinionated).
32
+ */
33
+ html {
34
+ cursor: default; /* 1 */
35
+ line-height: 1.5; /* 2 */
36
+ -moz-tab-size: 4; /* 3 */
37
+ -o-tab-size: 4;
38
+ tab-size: 4; /* 3 */
39
+ -webkit-tap-highlight-color: transparent;
40
+ -ms-text-size-adjust: 100%; /* 5 */
41
+ -webkit-text-size-adjust: 100%; /* 5 */
42
+ word-break: break-word; /* 6 */
43
+ }
44
+
45
+ /* Sections
46
+ * ========================================================================== */
47
+ /**
48
+ * Remove the margin in all browsers (opinionated).
49
+ */
50
+ body {
51
+ margin: 0;
52
+ }
53
+
54
+ /**
55
+ * Correct the font size and margin on `h1` elements within `section` and
56
+ * `article` contexts in Chrome, Edge, Firefox, and Safari.
57
+ */
58
+ h1 {
59
+ font-size: 2em;
60
+ margin: 0.67em 0;
61
+ }
62
+
63
+ /* Grouping content
64
+ * ========================================================================== */
65
+ /**
66
+ * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
67
+ */
68
+ dl dl,
69
+ dl ol,
70
+ dl ul,
71
+ ol dl,
72
+ ul dl {
73
+ margin: 0;
74
+ }
75
+
76
+ /**
77
+ * Remove the margin on nested lists in Edge 18- and IE.
78
+ */
79
+ ol ol,
80
+ ol ul,
81
+ ul ol,
82
+ ul ul {
83
+ margin: 0;
84
+ }
85
+
86
+ /**
87
+ * 1. Add the correct sizing in Firefox.
88
+ * 2. Show the overflow in Edge 18- and IE.
89
+ */
90
+ hr {
91
+ height: 0; /* 1 */
92
+ overflow: visible; /* 2 */
93
+ }
94
+
95
+ /**
96
+ * Add the correct display in IE.
97
+ */
98
+ main {
99
+ display: block;
100
+ }
101
+
102
+ /**
103
+ * Remove the list style on navigation lists in all browsers (opinionated).
104
+ */
105
+ nav ol,
106
+ nav ul {
107
+ list-style: none;
108
+ padding: 0;
109
+ }
110
+
111
+ /**
112
+ * 1. Correct the inheritance and scaling of font size in all browsers.
113
+ * 2. Correct the odd `em` font sizing in all browsers.
114
+ */
115
+ pre {
116
+ font-family: monospace, monospace; /* 1 */
117
+ font-size: 1em; /* 2 */
118
+ }
119
+
120
+ /* Text-level semantics
121
+ * ========================================================================== */
122
+ /**
123
+ * Remove the gray background on active links in IE 10.
124
+ */
125
+ a {
126
+ background-color: transparent;
127
+ }
128
+
129
+ /**
130
+ * Add the correct text decoration in Edge 18-, IE, and Safari.
131
+ */
132
+ abbr[title] {
133
+ text-decoration: underline;
134
+ -webkit-text-decoration: underline dotted;
135
+ text-decoration: underline dotted;
136
+ }
137
+
138
+ /**
139
+ * Add the correct font weight in Chrome, Edge, and Safari.
140
+ */
141
+ b,
142
+ strong {
143
+ font-weight: bolder;
144
+ }
145
+
146
+ /**
147
+ * 1. Correct the inheritance and scaling of font size in all browsers.
148
+ * 2. Correct the odd `em` font sizing in all browsers.
149
+ */
150
+ code,
151
+ kbd,
152
+ samp {
153
+ font-family: monospace, monospace; /* 1 */
154
+ font-size: 1em; /* 2 */
155
+ }
156
+
157
+ /**
158
+ * Add the correct font size in all browsers.
159
+ */
160
+ small {
161
+ font-size: 80%;
162
+ }
163
+
164
+ /* Embedded content
165
+ * ========================================================================== */
166
+ /*
167
+ * Change the alignment on media elements in all browsers (opinionated).
168
+ */
169
+ audio,
170
+ canvas,
171
+ iframe,
172
+ img,
173
+ svg,
174
+ video {
175
+ vertical-align: middle;
176
+ }
177
+
178
+ /**
179
+ * Add the correct display in IE 9-.
180
+ */
181
+ audio,
182
+ video {
183
+ display: inline-block;
184
+ }
185
+
186
+ /**
187
+ * Add the correct display in iOS 4-7.
188
+ */
189
+ audio:not([controls]) {
190
+ display: none;
191
+ height: 0;
192
+ }
193
+
194
+ /**
195
+ * Remove the border on iframes in all browsers (opinionated).
196
+ */
197
+ iframe {
198
+ border-style: none;
199
+ }
200
+
201
+ /**
202
+ * Remove the border on images within links in IE 10-.
203
+ */
204
+ img {
205
+ border-style: none;
206
+ }
207
+
208
+ /**
209
+ * Change the fill color to match the text color in all browsers (opinionated).
210
+ */
211
+ svg:not([fill]) {
212
+ fill: currentColor;
213
+ }
214
+
215
+ /**
216
+ * Hide the overflow in IE.
217
+ */
218
+ svg:not(:root) {
219
+ overflow: hidden;
220
+ }
221
+
222
+ /* Tabular data
223
+ * ========================================================================== */
224
+ /**
225
+ * Collapse border spacing in all browsers (opinionated).
226
+ */
227
+ table {
228
+ border-collapse: collapse;
229
+ }
230
+
231
+ /* Forms
232
+ * ========================================================================== */
233
+ /**
234
+ * Remove the margin on controls in Safari.
235
+ */
236
+ button,
237
+ input,
238
+ select {
239
+ margin: 0;
240
+ }
241
+
242
+ /**
243
+ * 1. Show the overflow in IE.
244
+ * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
245
+ */
246
+ button {
247
+ overflow: visible; /* 1 */
248
+ text-transform: none; /* 2 */
249
+ }
250
+
251
+ /**
252
+ * Correct the inability to style buttons in iOS and Safari.
253
+ */
254
+ button,
255
+ [type=button],
256
+ [type=reset],
257
+ [type=submit] {
258
+ -webkit-appearance: button;
259
+ appearance: button;
260
+ }
261
+
262
+ /**
263
+ * 1. Change the inconsistent appearance in all browsers (opinionated).
264
+ * 2. Correct the padding in Firefox.
265
+ */
266
+ fieldset {
267
+ border: 1px solid #a0a0a0; /* 1 */
268
+ padding: 0.35em 0.75em 0.625em; /* 2 */
269
+ }
270
+
271
+ /**
272
+ * Show the overflow in Edge 18- and IE.
273
+ */
274
+ input {
275
+ overflow: visible;
276
+ }
277
+
278
+ /**
279
+ * 1. Correct the text wrapping in Edge 18- and IE.
280
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
281
+ */
282
+ legend {
283
+ color: inherit; /* 2 */
284
+ display: table; /* 1 */
285
+ max-width: 100%; /* 1 */
286
+ white-space: normal; /* 1 */
287
+ }
288
+
289
+ /**
290
+ * 1. Add the correct display in Edge 18- and IE.
291
+ * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
292
+ */
293
+ progress {
294
+ display: inline-block; /* 1 */
295
+ vertical-align: baseline; /* 2 */
296
+ }
297
+
298
+ /**
299
+ * Remove the inheritance of text transform in Firefox.
300
+ */
301
+ select {
302
+ text-transform: none;
303
+ }
304
+
305
+ /**
306
+ * 1. Remove the margin in Firefox and Safari.
307
+ * 2. Remove the default vertical scrollbar in IE.
308
+ * 3. Change the resize direction in all browsers (opinionated).
309
+ */
310
+ textarea {
311
+ margin: 0; /* 1 */
312
+ overflow: auto; /* 2 */
313
+ resize: vertical; /* 3 */
314
+ }
315
+
316
+ /**
317
+ * Remove the padding in IE 10-.
318
+ */
319
+ [type=checkbox],
320
+ [type=radio] {
321
+ padding: 0;
322
+ }
323
+
324
+ /**
325
+ * 1. Correct the odd appearance in Chrome, Edge, and Safari.
326
+ * 2. Correct the outline style in Safari.
327
+ */
328
+ [type=search] {
329
+ -webkit-appearance: textfield; /* 1 */
330
+ appearance: textfield; /* 1 */
331
+ outline-offset: -2px; /* 2 */
16
332
  }
17
333
 
18
- main{
19
- position: relative;
20
- width: 600px;
21
- max-width: 100%;
22
- margin-inline: auto;
334
+ /**
335
+ * Correct the cursor style of increment and decrement buttons in Safari.
336
+ */
337
+ ::-webkit-inner-spin-button,
338
+ ::-webkit-outer-spin-button {
339
+ height: auto;
23
340
  }
24
341
 
25
- footer{
26
- width: 100%;
27
- text-align: center;
28
- padding-block: 1rem;
29
- margin-block-start: 3rem;
342
+ /**
343
+ * Correct the text style of placeholders in Chrome, Edge, and Safari.
344
+ */
345
+ ::-webkit-input-placeholder {
346
+ color: inherit;
347
+ opacity: 0.54;
30
348
  }
31
- .footer-text{
32
- font-size: 0.9rem;
349
+
350
+ /**
351
+ * Remove the inner padding in Chrome, Edge, and Safari on macOS.
352
+ */
353
+ ::-webkit-search-decoration {
354
+ -webkit-appearance: none;
355
+ }
356
+
357
+ /**
358
+ * 1. Correct the inability to style upload buttons in iOS and Safari.
359
+ * 2. Change font properties to `inherit` in Safari.
360
+ */
361
+ ::-webkit-file-upload-button {
362
+ -webkit-appearance: button; /* 1 */
363
+ font: inherit; /* 2 */
364
+ }
365
+
366
+ /**
367
+ * Remove the inner border and padding of focus outlines in Firefox.
368
+ */
369
+ ::-moz-focus-inner {
370
+ border-style: none;
371
+ padding: 0;
372
+ }
373
+
374
+ /**
375
+ * Restore the focus outline styles unset by the previous rule in Firefox.
376
+ */
377
+ :-moz-focusring {
378
+ outline: 1px dotted ButtonText;
379
+ }
380
+
381
+ /**
382
+ * Remove the additional :invalid styles in Firefox.
383
+ */
384
+ :-moz-ui-invalid {
385
+ box-shadow: none;
386
+ }
387
+
388
+ /* Interactive
389
+ * ========================================================================== */
390
+ /*
391
+ * Add the correct display in Edge 18- and IE.
392
+ */
393
+ details {
394
+ display: block;
395
+ }
396
+
397
+ /*
398
+ * Add the correct styles in Edge 18-, IE, and Safari.
399
+ */
400
+ dialog {
401
+ background-color: white;
402
+ border: solid;
403
+ color: black;
404
+ display: block;
405
+ height: -moz-fit-content;
406
+ height: fit-content;
407
+ left: 0;
408
+ margin: auto;
409
+ padding: 1em;
410
+ position: absolute;
411
+ right: 0;
412
+ width: -moz-fit-content;
413
+ width: fit-content;
414
+ }
415
+
416
+ dialog:not([open]) {
417
+ display: none;
418
+ }
419
+
420
+ /*
421
+ * Add the correct display in all browsers.
422
+ */
423
+ summary {
424
+ display: list-item;
425
+ }
426
+
427
+ /* Scripting
428
+ * ========================================================================== */
429
+ /**
430
+ * Add the correct display in IE 9-.
431
+ */
432
+ canvas {
433
+ display: inline-block;
434
+ }
435
+
436
+ /**
437
+ * Add the correct display in IE.
438
+ */
439
+ template {
440
+ display: none;
441
+ }
442
+
443
+ /* User interaction
444
+ * ========================================================================== */
445
+ /*
446
+ * 1. Remove the tapping delay in IE 10.
447
+ * 2. Remove the tapping delay on clickable elements
448
+ in all browsers (opinionated).
449
+ */
450
+ a,
451
+ area,
452
+ button,
453
+ input,
454
+ label,
455
+ select,
456
+ summary,
457
+ textarea,
458
+ [tabindex] { /* 1 */
459
+ touch-action: manipulation; /* 2 */
460
+ }
461
+
462
+ /**
463
+ * Add the correct display in IE 10-.
464
+ */
465
+ [hidden] {
466
+ display: none;
467
+ }
468
+
469
+ /* Accessibility
470
+ * ========================================================================== */
471
+ /**
472
+ * Change the cursor on busy elements in all browsers (opinionated).
473
+ */
474
+ [aria-busy=true] {
475
+ cursor: progress;
476
+ }
477
+
478
+ /*
479
+ * Change the cursor on control elements in all browsers (opinionated).
480
+ */
481
+ [aria-controls] {
482
+ cursor: pointer;
483
+ }
484
+
485
+ /*
486
+ * Change the cursor on disabled, not-editable, or otherwise
487
+ * inoperable elements in all browsers (opinionated).
488
+ */
489
+ [aria-disabled=true],
490
+ [disabled] {
491
+ cursor: not-allowed;
492
+ }
493
+
494
+ /*
495
+ * Change the display on visually hidden accessible elements
496
+ * in all browsers (opinionated).
497
+ */
498
+ [aria-hidden=false][hidden] {
499
+ display: initial;
500
+ }
501
+
502
+ [aria-hidden=false][hidden]:not(:focus) {
503
+ clip: rect(0, 0, 0, 0);
504
+ position: absolute;
505
+ }
506
+
507
+ :root {
508
+ --s1: 4px;
509
+ --s2: 8px;
510
+ --s3: 16px;
511
+ --s4: 32px;
512
+ --s5: 48px;
513
+ --s6: 80px;
514
+ --s7: 112px;
515
+ }
516
+
517
+ :root {
518
+ --regular: 500;
519
+ --bold: 600;
520
+ }
521
+
522
+ :root {
523
+ --mini-border: var(--s2);
524
+ --regular-border: var(--s3);
525
+ }
526
+
527
+ :root {
528
+ --black: black;
529
+ --hevy-dark: #333;
530
+ --dark: #444;
531
+ --light-dark: #ddd;
532
+ --white: white;
533
+ }
534
+
535
+ body {
536
+ font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック";
537
+ }
538
+
539
+ h1, h2, h3, h4, h5, h6, b {
540
+ font-weight: var(--bold);
541
+ }
542
+
543
+ pre {
544
+ padding-block: var(--s1);
545
+ padding-inline: var(--s2);
546
+ background-color: var(--hevy-dark);
547
+ color: var(--white);
548
+ border-radius: var(--mini-border);
549
+ }
550
+
551
+ .header-wrapper {
552
+ position: fixed;
553
+ top: 0;
554
+ left: 0;
555
+ z-index: 10;
556
+ width: 100%;
557
+ padding-block-start: var(--s2);
558
+ padding-inline: var(--s2);
559
+ }
560
+ .header-container {
561
+ width: 100%;
562
+ padding-block: var(--s2);
563
+ padding-inline: var(--s3);
564
+ display: flex;
565
+ justify-content: space-between;
566
+ align-items: center;
567
+ background: var(--hevy-dark);
568
+ border-radius: var(--mini-border);
569
+ overflow: hidden;
570
+ }
571
+ .header-speacer {
572
+ height: var(--s6);
573
+ }
574
+ .header-logo {
575
+ width: -moz-fit-content;
576
+ width: fit-content;
577
+ font-size: 20px;
578
+ font-weight: 500;
579
+ line-height: 1.5rem;
580
+ color: var(--white);
581
+ text-decoration: none;
582
+ }
583
+ .header-link {
584
+ position: relative;
585
+ width: 28px;
586
+ height: 28px;
587
+ border-radius: 50%;
588
+ overflow: hidden;
589
+ }
590
+ .header-link:hover {
591
+ box-shadow: 0 0 30px rgb(0, 255, 60);
592
+ transition: 0.3s;
593
+ }
594
+ .header-link img {
595
+ width: 100%;
596
+ height: 100%;
597
+ -o-object-fit: cover;
598
+ object-fit: cover;
599
+ -webkit-user-select: none;
600
+ -moz-user-select: none;
601
+ user-select: none;
602
+ }
603
+
604
+ .footer-container {
605
+ position: relative;
606
+ width: 100%;
607
+ text-align: center;
608
+ padding-block: var(--s5);
609
+ }
610
+ .footer-text {
611
+ font-size: 0.8rem;
612
+ }
613
+
614
+ main {
615
+ position: relative;
616
+ width: 100%;
617
+ display: flex;
618
+ flex-direction: column;
619
+ align-items: center;
620
+ }
621
+
622
+ .thumbnail-container {
623
+ width: 100%;
624
+ height: 350px;
625
+ display: flex;
626
+ flex-direction: column;
627
+ justify-content: center;
628
+ align-items: center;
629
+ border-radius: var(--regular-border);
630
+ overflow: hidden;
33
631
  }
34
632
 
35
- pre{
36
- padding: 0.4rem 0.8rem;
37
- background-color: rgb(239 239 239);
38
- border-radius: 0.4rem;
39
- }
633
+ .article-container {
634
+ width: 600px;
635
+ max-width: 100%;
636
+ }/*# sourceMappingURL=style.css.map */
@@ -1,7 +1,11 @@
1
1
  <Extends base />
2
2
  <Insert main>
3
- <h1>Nexom Web Module v1.01 Dev</h1>
4
- <a href="/doc/">View Doc📕</a>
5
- <a href="/static/dog.jpeg">View Dog🐕</a>
3
+ <div class="thumbnail-container">
4
+ <h1>Welcome Nexom v1.05 Deeeeeeeev</h1>
5
+ <p>How are you? I'm fine! Thank you!</p>
6
+ </div>
7
+ <div class="container">
8
+ <p><a href="/static/dog.jpeg">Dog🐕</a> or <a href="/doc">Doc📕</a></p>
9
+ </div>
6
10
  </Insert>
7
11