Compare commits
29 Commits
html_frame
...
ascii_css
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ea781e2aac | ||
|
|
f027ca2752 | ||
|
|
f80c7608b2 | ||
|
|
41ba9a3e52 | ||
|
|
035c75ea45 | ||
|
|
4a0895ef1c | ||
|
|
12e5204051 | ||
|
|
0dfafb81d2 | ||
|
|
7e0cb01352 | ||
|
|
5a443e6672 | ||
|
|
484c22b7d6 | ||
|
|
e507e45c6b | ||
|
|
6a2f4fc6a8 | ||
|
|
b5eef7b44f | ||
|
|
337e799c59 | ||
|
|
209d5f016f | ||
|
|
eaae842a0f | ||
|
|
4f52676b99 | ||
|
|
0d3e06c1f8 | ||
|
|
3d02cce131 | ||
|
|
4ad8a639a8 | ||
|
|
a0404aedc1 | ||
|
|
cbdce41472 | ||
|
|
fba096a932 | ||
|
|
85ab2a2911 | ||
|
|
939a61f9b1 | ||
|
|
aa022190eb | ||
|
|
d53e21b3be | ||
|
|
50c90cae41 |
336
README.md
@@ -1,175 +1,189 @@
|
||||
start it with a server, like : `alive-server`
|
||||
- https://www.npmjs.com/package/alive-server
|
||||
- install : `npm install -g alive-server`
|
||||
|
||||
---
|
||||
direction | width | child | child | child
|
||||
| | position | main axis | second axis
|
||||
................................................................
|
||||
horizontal | content | left |-pack |-fit
|
||||
vertical |-parent | right | grow | stretch
|
||||
| | top | space |
|
||||
| | bottom | spread |
|
||||
| |-center | |
|
||||
|
||||
function replaceHtml(elementToReplace, contentToLoad) {
|
||||
let oldContent = elementToReplace.innerHTML;
|
||||
let newContent = deserialize_html(contentToLoad);
|
||||
let targetName = elementToReplace.dataset.target;
|
||||
let contentElement = findClassInHtmlcollection(newContent, targetName);
|
||||
if (contentElement)
|
||||
content_element.outerHTML = oldContent;
|
||||
.<direction>-<width>-<position-[position]>-<main-axis>-<second-axis>
|
||||
|
||||
elementToReplace.replaceWith(...newContent);
|
||||
};
|
||||
position :
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . left-top . . top . . right-top . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . left . .-center . . right . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . left-bottom . . bottom . . right-bottom. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
|
||||
function loadHtml() {
|
||||
let elements = document.getElementsByClassName("load_html");
|
||||
for (let elementToReplace of elements) {
|
||||
let path = (elementToReplace.dataset.path);
|
||||
fetch(path)
|
||||
.then(response => response.text())
|
||||
.then(contentToLoad => replaceHtml(elementToReplace, contentToLoad))
|
||||
.catch(error => console.log('Error:', error));
|
||||
};
|
||||
}
|
||||
width :
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . . .
|
||||
. . . . . . . . . . . . . . . . . . .
|
||||
. . . . . . . . . .
|
||||
. . . . . . . . . . . . .
|
||||
. . . . . . . . parent . .
|
||||
. . . . . . . . . .
|
||||
. . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . . .
|
||||
. . . . . . . . . . . . . . . . . . .
|
||||
. . . . . . . . . .
|
||||
. . . . . . . . . . . . .
|
||||
. . . . . . . . . content .
|
||||
. . . . . . . . . .
|
||||
. . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
|
||||
---
|
||||
main axis :
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. . space . . . . . .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. . spread. . . . . .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. .-pack . . . . . .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . grow . . . . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
|
||||
function replace_html(element_to_replace, content_to_load) {
|
||||
let old_content = element_to_replace.innerHTML;
|
||||
let new_content = deserialize_html(content_to_load);
|
||||
let target_name = element_to_replace.dataset.target;
|
||||
let content_element = find_class_in_htmlcollection(new_content, target_name);
|
||||
if (content_element)
|
||||
content_element.outerHTML = old_content;
|
||||
|
||||
element_to_replace.replaceWith(...new_content);
|
||||
};
|
||||
|
||||
function load_html() {
|
||||
let elements = document.getElementsByClassName("load_html");
|
||||
for (let element_to_replace of elements) {
|
||||
let path = (element_to_replace.dataset.path);
|
||||
fetch(path)
|
||||
.then(response => response.text())
|
||||
.then(content_to_load => replace_html(element_to_replace, content_to_load))
|
||||
.catch(error => console.log('Error:', error));
|
||||
};
|
||||
}
|
||||
|
||||
---
|
||||
|
||||
https://www.youtube.com/watch?v=elt5zpcTlOE
|
||||
|
||||
01. 00:00:00 Flowers (Miley Cyrus, 2022)
|
||||
02. 00:03:11 Calm Down (Rema, Selena Gomez)
|
||||
03. 00:07:07 Dusk Till Dawn (Zayn, Sia, cover ?)
|
||||
04. 00:10:17 Old Town Road (Lil Nas X, Billy Ray Cyrus, Jatayu cover)
|
||||
05. 00:12:47 Stay (The Kid Laroi, Justin Bieber, cover ?)
|
||||
06. 00:15:07 Kill Bill (Sza, cover ?)
|
||||
07. 00:17:41 Treat You Better (Shawn Mendes, cover ?)
|
||||
08. 00:20:34 We Don't Talk Anymore ()
|
||||
09. 00:23:35 Unstoppable ()
|
||||
10. 00:27:21 See You Again ()
|
||||
11. 00:30:11 24K Magic - Bruno Mars ()
|
||||
12. 00:33:39 Bad Habits ()
|
||||
13. 00:36:39 This Is What You Came For ()
|
||||
14. 00:40:35 Sugar ()
|
||||
15. 00:44:28 Side to Sise ()
|
||||
16. 00:47:58 Im The One ()
|
||||
17. 00:51:10 Sorry - Justin Bieber ()
|
||||
18. 00:54:16 Wthout Me - Halsey ()
|
||||
19. 00:55:57 Lose You To Love Me ()
|
||||
20. 00:58:08 Work From Home ()
|
||||
21. 01:00:35 Havana ()
|
||||
22. 01:02:54 Shivers ()
|
||||
23. 01:06:24 Save Your Tears ()
|
||||
24. 01:09:59 Peaches ()
|
||||
25. 01:12:01 Cheap Thrills ()
|
||||
26. 01:13:57 Rihanna - Work ()
|
||||
27. 01:17:23 Easy On Me ()
|
||||
28. 01:21:01 Señorita - Shawn Mendes ()
|
||||
29. 01:24:11 New Rules ()
|
||||
30. 01:27:40 The Greatest - Sia ()
|
||||
31. 01:29:50 Shape Of You ()
|
||||
32. 01:33:12 Attention ()
|
||||
33. 01:36:25 Monsters ()
|
||||
34. 01:37:52 Good 4 U ()
|
||||
35. 01:41:38 Faded ()
|
||||
36. 01:45:06 Send My Love ()
|
||||
37. 01:48:43 What About Us ()
|
||||
38. 01:53:14 Let Me Love You ()
|
||||
39. 01:56:48 I Don't Care ()
|
||||
40. 01:59:47 There's Nothing Holding Me Back ()
|
||||
41. 02:03:07
|
||||
42. 02:05:48
|
||||
43. 02:07:30
|
||||
44. 02:10:23
|
||||
45. 02:13:13
|
||||
46. 02:16:30
|
||||
47. 02:18:38
|
||||
48. 02:23:26
|
||||
49. 02:26:39
|
||||
50. 02:29:18
|
||||
second axis :
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . . .
|
||||
. . . . . . . . . . . . . .
|
||||
. . . . . . . . . . . . .
|
||||
. . . . . . . . . . . . . . .
|
||||
. . . . . . . . . . . .
|
||||
. .-fit . . . . . .stretch. . . .
|
||||
. . . . . . . . . . . .
|
||||
. . . . . . . . . . . . . . .
|
||||
. . . . . . . . . . . . .
|
||||
. . . . . . . . . . . . . .
|
||||
. . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
|
||||
|
||||
|
||||
|
||||
----------------------------------------------------------------
|
||||
|
||||
**v2 :**
|
||||
|
||||
|
||||
direction | width | child | child | child
|
||||
| | position | main axis | second axis
|
||||
................................................................
|
||||
horizontal | fit | left |-pack | begin
|
||||
vertical | large | right | grow | end
|
||||
| | top | space |-middle
|
||||
| | bottom | spread | equal
|
||||
| |-center | | stretch
|
||||
|
||||
.<direction>-<width>-<position-[position]>-<main-axis>-<second-axis>
|
||||
|
||||
position :
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . left-top . . top . . right-top . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . left . .-center . . right . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . left-bottom . . bottom . . right-bottom. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
|
||||
main axis :
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. . space . . . . . . justify-content
|
||||
. . . . . . . . . . . . . . . . . : space-around
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. . spread. . . . . . justify-content
|
||||
. . . . . . . . . . . . . . . . . : space-between
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. .-pack . . . . . .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . grow . . . . . . child :
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . grow: 1;
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
|
||||
second axis :
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . . .
|
||||
. . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . . . . . . . . . . begin . . . . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . .
|
||||
. .-middle. . . . . . . . . . . .
|
||||
. . . . . . . . . . . . . . . . . . . .
|
||||
. . . . . . . . . . . . .
|
||||
. . . . . . . . . . . . . .
|
||||
. . . .
|
||||
. . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . . .
|
||||
. . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . . . . . . . . . . .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. . . . . . . . equal . . . . . .
|
||||
. . . . . . . . . . . . . . . . . . .
|
||||
. . end . . . . . . . . . . . . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . . .
|
||||
. . . .
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
. . . . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. . . . . . . .
|
||||
. . . . . . . .
|
||||
. . . . . . . .
|
||||
. .stretch. . . . . .
|
||||
. . . . . . . .
|
||||
. . . . . . . .
|
||||
. . . . . . . .
|
||||
. . . . . . . . . . . . . . . . .
|
||||
. .
|
||||
. . . . . . . . . . . . . . . . . . .
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
01. 00:00:00 Flowers
|
||||
02. 00:03:11 Calm Down
|
||||
03. 00:07:07 Dusk Till Dawn
|
||||
04. 00:10:17 Old Town Road
|
||||
05. 00:12:47 Stay
|
||||
06. 00:15:07 Kill Bill
|
||||
07. 00:17:41 Treat You Better
|
||||
08. 00:20:34 We Don't Talk Anymore
|
||||
09. 00:23:35 Unstoppable
|
||||
10. 00:27:21 See You Again
|
||||
11. 00:30:11 24K Magic
|
||||
12. 00:33:39 Bad Habits
|
||||
13. 00:36:39 This Is What You Came For
|
||||
14. 00:40:35 Sugar
|
||||
15. 00:44:28 Side to Sise
|
||||
16. 00:47:58 Im The One
|
||||
17. 00:51:10 Sorry
|
||||
18. 00:54:16 Wthout Me
|
||||
19. 00:55:57 Lose You To Love Me
|
||||
20. 00:58:08 Work From Home
|
||||
21. 01:00:35 Havana
|
||||
22. 01:02:54 Shivers
|
||||
23. 01:06:24 Save Your Tears
|
||||
24. 01:09:59 Peaches
|
||||
25. 01:12:01 Cheap Thrills
|
||||
26. 01:13:57 Work
|
||||
27. 01:17:23 Easy On Me
|
||||
28. 01:21:01 Señorita
|
||||
29. 01:24:11 New Rules
|
||||
30. 01:27:40 The Greatest
|
||||
31. 01:29:50 Shape Of You
|
||||
32. 01:33:12 Attention
|
||||
33. 01:36:25 Monsters
|
||||
34. 01:37:52 Good 4 U
|
||||
35. 01:41:38 Faded
|
||||
36. 01:45:06 Send My Love
|
||||
37. 01:48:43 What About Us
|
||||
38. 01:53:14 Let Me Love You
|
||||
39. 01:56:48 I Don't Care
|
||||
40. 01:59:47 There's Nothing Holding Me Back
|
||||
41. 02:03:07 ?
|
||||
42. 02:05:48 ?
|
||||
43. 02:07:30 ?
|
||||
44. 02:10:23 ?
|
||||
45. 02:13:13 ?
|
||||
46. 02:16:30 ?
|
||||
47. 02:18:38 ?
|
||||
48. 02:23:26 ?
|
||||
49. 02:26:39 ?
|
||||
50. 02:29:18 ?
|
||||
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
<div class="load_html" data-path="ascii_elements/banner_container.html" data-path_target="banner">
|
||||
|
||||
<pre class="banner" data-class_target="banner">
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
</pre>
|
||||
|
||||
</div>
|
||||
@@ -1,57 +0,0 @@
|
||||
|
||||
<div class="banner_container">
|
||||
<div class="content_html" data-path_target="banner"></div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
div.banner {
|
||||
flex-wrap: wrap;
|
||||
overflow: hidden;
|
||||
width: 99vw;
|
||||
margin: 10px 0px;
|
||||
}
|
||||
div.smallbanner {
|
||||
height: 3.5ex;
|
||||
}
|
||||
div.bigbanner {
|
||||
height: 21.5ex;
|
||||
}
|
||||
div.banner * {
|
||||
margin: 0px;
|
||||
}
|
||||
div.banner p {
|
||||
white-space: pre;
|
||||
}
|
||||
div.banner br {
|
||||
display: block;
|
||||
}
|
||||
pre.banner {
|
||||
position: relative;
|
||||
margin-left: -100px;
|
||||
animation-name: slide;
|
||||
animation-iteration-count: infinite;
|
||||
animation-duration: 2s;
|
||||
animation-timing-function: linear;
|
||||
animation-direction: normal;
|
||||
}
|
||||
pre.banner.pause {
|
||||
animation-play-state: paused;
|
||||
}
|
||||
pre.banner.reverse {
|
||||
animation-direction: reverse;
|
||||
}
|
||||
pre.banner.t0_5 {
|
||||
animation-duration: 0.5s;
|
||||
}
|
||||
pre.banner.t1_0 {
|
||||
animation-duration: 1s;
|
||||
}
|
||||
pre.banner.t1_5 {
|
||||
animation-duration: 1.5s;
|
||||
}
|
||||
@keyframes slide {
|
||||
from {left:0;}
|
||||
to {left:2.4em;}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
<pre>
|
||||
•
|
||||
•• ••••• •••••
|
||||
••• • • • • ••
|
||||
•••• • •••• • • • •
|
||||
•• •• • • • • • • • •
|
||||
•• •• • • • ••• •••••
|
||||
•• •• • •• •
|
||||
•• •• • •• •
|
||||
•• ••••••••• • • •
|
||||
•• •• • •••• ••••• •
|
||||
•• •• • • • • • • •
|
||||
•• •• • • • • •• • •
|
||||
•••• • •• •• •• •
|
||||
••• • ••••••• • • •••
|
||||
•• • • •••••
|
||||
•••••••• • • •
|
||||
</pre>
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
<pre>
|
||||
•••• •
|
||||
• • •
|
||||
• • •
|
||||
• •••
|
||||
•••••
|
||||
• •
|
||||
• •
|
||||
• •
|
||||
••• •••
|
||||
• • • •
|
||||
• • • •
|
||||
•••• ••••
|
||||
• • • • •
|
||||
••• • • •
|
||||
••••••••
|
||||
•
|
||||
</pre>
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
<pre>
|
||||
•
|
||||
•
|
||||
•• •
|
||||
• • •••••••
|
||||
• •• • •
|
||||
• ••••• • • • •
|
||||
• • • • • •
|
||||
• • •• •
|
||||
• • • •
|
||||
••• •• ••
|
||||
• •• • •
|
||||
• ••••
|
||||
•• •
|
||||
•
|
||||
</pre>
|
||||
|
||||
@@ -1,252 +0,0 @@
|
||||
|
||||
<load-html data-path="ascii_elements/mouse_container.html">
|
||||
<div slot part="mouse_div">
|
||||
|
||||
<pre class="mouse f1">
|
||||
•
|
||||
•
|
||||
•• •
|
||||
• • •
|
||||
•••••••••
|
||||
• • ••
|
||||
• • •
|
||||
••••• • • •
|
||||
• • •• •
|
||||
• • •
|
||||
• • ••
|
||||
• • • •
|
||||
• •• •
|
||||
••• ••••
|
||||
</pre>
|
||||
<pre class="mouse f2">
|
||||
•
|
||||
•
|
||||
•• •
|
||||
• • •
|
||||
•••••••••
|
||||
• • ••
|
||||
• • •
|
||||
••••• • • •
|
||||
• • •• •
|
||||
• • •
|
||||
• • ••
|
||||
• • • •
|
||||
• •• •
|
||||
••• ••••
|
||||
</pre>
|
||||
<pre class="mouse f3">
|
||||
•
|
||||
•
|
||||
•• •
|
||||
• • •
|
||||
•••••••••
|
||||
• • ••
|
||||
• • •
|
||||
••••• • • •
|
||||
• • •• •
|
||||
• •
|
||||
•• • ••
|
||||
• • • •
|
||||
• •• •
|
||||
••• ••••
|
||||
</pre>
|
||||
<pre class="mouse f4">
|
||||
•
|
||||
•
|
||||
•• •
|
||||
• • •
|
||||
•••••••••
|
||||
• • ••
|
||||
• • •
|
||||
••••• • • •
|
||||
• • •• •
|
||||
• • •
|
||||
• • ••
|
||||
• • • •
|
||||
• •• •
|
||||
••• ••••
|
||||
</pre>
|
||||
<pre class="mouse f5">
|
||||
•
|
||||
•
|
||||
•• •
|
||||
• • •
|
||||
•••••••••
|
||||
• • ••
|
||||
• • •
|
||||
••••• • • •
|
||||
• • •• •
|
||||
• • •
|
||||
• • ••
|
||||
• • • •
|
||||
• •• •
|
||||
••• ••••
|
||||
</pre>
|
||||
<pre class="mouse f6">
|
||||
•
|
||||
•
|
||||
•• •
|
||||
• • •
|
||||
•••••••••
|
||||
• • ••
|
||||
• • •
|
||||
••••• • • •
|
||||
• • •• •
|
||||
• • •
|
||||
• • ••
|
||||
• • • •
|
||||
• •• •
|
||||
••• ••••
|
||||
</pre>
|
||||
<pre class="mouse f7">
|
||||
•
|
||||
•
|
||||
•• •
|
||||
• • •
|
||||
•••••••••
|
||||
• • ••
|
||||
• • •
|
||||
••••• • • •
|
||||
• • •• •
|
||||
• • •
|
||||
• • ••
|
||||
• • • •
|
||||
• •• •
|
||||
••• ••••
|
||||
</pre>
|
||||
<pre class="mouse f8">
|
||||
••
|
||||
• • •
|
||||
•• •
|
||||
• • •
|
||||
• • • •
|
||||
••••• • ••
|
||||
• • •••••••••
|
||||
• • •
|
||||
•• • ••• •
|
||||
• • • •
|
||||
• •• • •
|
||||
••• ••••
|
||||
</pre>
|
||||
<pre class="mouse f9">
|
||||
••
|
||||
• • •
|
||||
•• •
|
||||
• • •
|
||||
• • • •
|
||||
••••• • ••
|
||||
• • •••••••••
|
||||
• • • •
|
||||
• • ••• •
|
||||
• • • •
|
||||
• •• • •
|
||||
••• ••••
|
||||
</pre>
|
||||
<pre class="mouse f10">
|
||||
|
||||
••
|
||||
• • •
|
||||
•• •
|
||||
• • •
|
||||
• • • •
|
||||
••••• • ••
|
||||
• • •••••••••
|
||||
• • • •
|
||||
• • ••• •
|
||||
• • • •
|
||||
• •• • •
|
||||
••• ••••
|
||||
</pre>
|
||||
|
||||
</div>
|
||||
</load-html>
|
||||
|
||||
<!--
|
||||
• -
|
||||
•• • -- - ••
|
||||
• • • - - - • • •
|
||||
••••••••• --------- •• •
|
||||
• • •• - - -- • • •
|
||||
• • • - - - • • • •
|
||||
••••• • • • ----- - - - ••••• • ••
|
||||
• • •• • - - -- - • • •••••••••
|
||||
• • - - • • •
|
||||
• • •• - - -- •• • ••• •
|
||||
• • • • - - - - • • • •
|
||||
• •• • - -- - • •• • •
|
||||
••• •••• --- ---- ••• ••••
|
||||
-->
|
||||
|
||||
<style>
|
||||
/* *27
|
||||
pre.mouse.f2 {animation-delay: calc(var(--tmouse) * 3.7/100);}
|
||||
pre.mouse.f3 {animation-delay: calc(var(--tmouse) * 7.4/100);}
|
||||
pre.mouse.f4 {animation-delay: calc(var(--tmouse) * 11.1/100);}
|
||||
pre.mouse.f5 {animation-delay: calc(var(--tmouse) * 14.8/100);}
|
||||
pre.mouse.f6 {animation-delay: calc(var(--tmouse) * 18.5/100);}
|
||||
pre.mouse.f7 {animation-delay: calc(var(--tmouse) * 22.2/100);}
|
||||
pre.mouse.f8 {animation-delay: calc(var(--tmouse) * 25.9/100);}
|
||||
pre.mouse.f9 {animation-delay: calc(var(--tmouse) * 29.6/100);}
|
||||
pre.mouse.f10 {animation-delay: calc(var(--tmouse) * 33.3/100);}
|
||||
pre.mouse.f11 {animation-delay: calc(var(--tmouse) * 37/100);}
|
||||
pre.mouse.f12 {animation-delay: calc(var(--tmouse) * 40.7/100);}
|
||||
pre.mouse.f13 {animation-delay: calc(var(--tmouse) * 44.4/100);}
|
||||
pre.mouse.f14 {animation-delay: calc(var(--tmouse) * 48.1/100);}
|
||||
pre.mouse.f15 {animation-delay: calc(var(--tmouse) * 51.8/100);}
|
||||
pre.mouse.f16 {animation-delay: calc(var(--tmouse) * 55.5/100);}
|
||||
pre.mouse.f17 {animation-delay: calc(var(--tmouse) * 59.2/100);}
|
||||
pre.mouse.f18 {animation-delay: calc(var(--tmouse) * 62.9/100);}
|
||||
pre.mouse.f19 {animation-delay: calc(var(--tmouse) * 66.6/100);}
|
||||
pre.mouse.f20 {animation-delay: calc(var(--tmouse) * 70.3/100);}
|
||||
pre.mouse.f21 {animation-delay: calc(var(--tmouse) * 74/100);}
|
||||
pre.mouse.f22 {animation-delay: calc(var(--tmouse) * 77.7/100);}
|
||||
pre.mouse.f23 {animation-delay: calc(var(--tmouse) * 81.4/100);}
|
||||
pre.mouse.f24 {animation-delay: calc(var(--tmouse) * 85.1/100);}
|
||||
pre.mouse.f25 {animation-delay: calc(var(--tmouse) * 88.8/100);}
|
||||
pre.mouse.f26 {animation-delay: calc(var(--tmouse) * 92.5/100);}
|
||||
pre.mouse.f27 {animation-delay: calc(var(--tmouse) * 96.2/100);}
|
||||
*/
|
||||
/* *25
|
||||
pre.mouse.f2 {animation-delay: calc(var(--tmouse) * 4/100);}
|
||||
pre.mouse.f3 {animation-delay: calc(var(--tmouse) * 8/100);}
|
||||
pre.mouse.f4 {animation-delay: calc(var(--tmouse) * 12/100);}
|
||||
pre.mouse.f5 {animation-delay: calc(var(--tmouse) * 16/100);}
|
||||
pre.mouse.f6 {animation-delay: calc(var(--tmouse) * 20/100);}
|
||||
pre.mouse.f7 {animation-delay: calc(var(--tmouse) * 24/100);}
|
||||
pre.mouse.f8 {animation-delay: calc(var(--tmouse) * 28/100);}
|
||||
pre.mouse.f9 {animation-delay: calc(var(--tmouse) * 32/100);}
|
||||
pre.mouse.f10 {animation-delay: calc(var(--tmouse) * 36/100);}
|
||||
pre.mouse.f11 {animation-delay: calc(var(--tmouse) * 40/100);}
|
||||
pre.mouse.f12 {animation-delay: calc(var(--tmouse) * 44/100);}
|
||||
pre.mouse.f13 {animation-delay: calc(var(--tmouse) * 48/100);}
|
||||
pre.mouse.f14 {animation-delay: calc(var(--tmouse) * 52/100);}
|
||||
pre.mouse.f15 {animation-delay: calc(var(--tmouse) * 56/100);}
|
||||
pre.mouse.f16 {animation-delay: calc(var(--tmouse) * 60/100);}
|
||||
pre.mouse.f17 {animation-delay: calc(var(--tmouse) * 64/100);}
|
||||
pre.mouse.f18 {animation-delay: calc(var(--tmouse) * 68/100);}
|
||||
pre.mouse.f19 {animation-delay: calc(var(--tmouse) * 72/100);}
|
||||
pre.mouse.f20 {animation-delay: calc(var(--tmouse) * 76/100);}
|
||||
pre.mouse.f21 {animation-delay: calc(var(--tmouse) * 80/100);}
|
||||
pre.mouse.f22 {animation-delay: calc(var(--tmouse) * 84/100);}
|
||||
pre.mouse.f23 {animation-delay: calc(var(--tmouse) * 88/100);}
|
||||
pre.mouse.f24 {animation-delay: calc(var(--tmouse) * 92/100);}
|
||||
pre.mouse.f25 {animation-delay: calc(var(--tmouse) * 96/100);}
|
||||
*/
|
||||
/* *10
|
||||
*/
|
||||
pre.mouse.f2 {animation-delay: calc(var(--tmouse) * 10/100);}
|
||||
pre.mouse.f3 {animation-delay: calc(var(--tmouse) * 20/100);}
|
||||
pre.mouse.f4 {animation-delay: calc(var(--tmouse) * 30/100);}
|
||||
pre.mouse.f5 {animation-delay: calc(var(--tmouse) * 40/100);}
|
||||
pre.mouse.f6 {animation-delay: calc(var(--tmouse) * 50/100);}
|
||||
pre.mouse.f7 {animation-delay: calc(var(--tmouse) * 60/100);}
|
||||
pre.mouse.f8 {animation-delay: calc(var(--tmouse) * 70/100);}
|
||||
pre.mouse.f9 {animation-delay: calc(var(--tmouse) * 80/100);}
|
||||
pre.mouse.f10 {animation-delay: calc(var(--tmouse) * 90/100);}
|
||||
@keyframes mouse {
|
||||
0% {opacity: 1;}
|
||||
10% {opacity: 1;}
|
||||
10.1% {opacity: 0;}
|
||||
100% {opacity: 0;}
|
||||
}
|
||||
</style>
|
||||
@@ -1,35 +0,0 @@
|
||||
|
||||
<div class="mouse_container">
|
||||
<slot class="content_html"></slot>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.mouse_container {
|
||||
position: relative;
|
||||
margin-left: 0px;
|
||||
display: contents;
|
||||
/*
|
||||
border: 1px solid red;
|
||||
margin-right: auto;
|
||||
height: 8.5em;
|
||||
width: 11.9em;
|
||||
*/
|
||||
width: fit-content;
|
||||
}
|
||||
pre.mouse {
|
||||
--tmouse: 2s;
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
bottom: 0px;
|
||||
margin: 0px;
|
||||
opacity: 0;
|
||||
animation-name: mouse;
|
||||
animation-iteration-count: infinite;
|
||||
animation-duration: var(--tmouse);
|
||||
animation-timing-function: linear;
|
||||
animation-direction: normal;
|
||||
}
|
||||
pre.mouse:first-child {
|
||||
position: relative;
|
||||
}
|
||||
</style>
|
||||
@@ -1,8 +0,0 @@
|
||||
<pre>
|
||||
• • • • ••••• ••••• • ••• • • • •
|
||||
• • • • • • • • • • •• •• • •
|
||||
••••• • • • •• • • • ••••• • • • •
|
||||
• • • • • • • • • • • • • •
|
||||
• • ••••• ••••• ••••• ••••• • • • • •
|
||||
</pre>
|
||||
|
||||
685
index.html
@@ -7,64 +7,655 @@
|
||||
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
|
||||
<title>hugulumu.fr</title>
|
||||
<meta name="description" content="site web de hugo lamy, developpeur">
|
||||
<script type="text/javascript" src="./scripts/load_html.js" defer></script>
|
||||
<link href="./styles/style.css" type="text/css" rel="stylesheet">
|
||||
<!--
|
||||
-->
|
||||
<link href="./styles/reset.css" type="text/css" rel="stylesheet">
|
||||
<link href="./styles/global.css" type="text/css" rel="stylesheet">
|
||||
<link href="./styles/text.css" type="text/css" rel="stylesheet">
|
||||
<link href="./styles/elements/mouses.css" type="text/css" rel="stylesheet">
|
||||
<link href="./styles/elements/banners.css" type="text/css" rel="stylesheet">
|
||||
<link href="./styles/elements/title.css" type="text/css" rel="stylesheet">
|
||||
<link href="./styles/elements/cv.css" type="text/css" rel="stylesheet">
|
||||
<link href="./styles/elements/infos.css" type="text/css" rel="stylesheet">
|
||||
<link href="./styles/elements/test.css" type="text/css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<!--
|
||||
|
||||
ids :
|
||||
|
||||
<id="personnal_infos">
|
||||
<id="role_title">
|
||||
<id="cv_infos">
|
||||
<id="mouse_1">
|
||||
<id="mouse_2">
|
||||
<id="mouse_3">
|
||||
<id="mouse_4">
|
||||
<id="banner_1">
|
||||
<id="banner_2">
|
||||
<id="banner_3">
|
||||
<id="banner_4">
|
||||
<id="banner_5">
|
||||
|
||||
original : • 8226 U+2022
|
||||
: 57442 U+E062
|
||||
: 57443 U+E063
|
||||
: 57444 U+E064
|
||||
: 57445 U+E065
|
||||
actual : 57446 U+E066
|
||||
: 57447 U+E067
|
||||
|
||||
<section style="height: 200px;" class="left child-left-dense horizontal">
|
||||
|
||||
accessibility pre : https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre#specifications
|
||||
|
||||
<figure>
|
||||
<pre role="img" aria-label="ASCII COW">
|
||||
___________________________
|
||||
< I'm an expert in my field. >
|
||||
---------------------------
|
||||
\ ^__^
|
||||
\ (oo)\_______
|
||||
(__)\ )\/\
|
||||
||----w |
|
||||
|| ||
|
||||
</pre>
|
||||
<figcaption id="cow-caption">
|
||||
A cow saying, "I'm an expert in my field." The cow is illustrated using
|
||||
preformatted text characters.
|
||||
</figcaption>
|
||||
</figure>
|
||||
|
||||
-->
|
||||
|
||||
<body>
|
||||
|
||||
<load-html data-path="ascii_elements/name.html"></load-html>
|
||||
<load-html data-path="ascii_elements/mouse_1.html"></load-html>
|
||||
<load-html data-path="ascii_elements/mouse_2.html"></load-html>
|
||||
<load-html data-path="ascii_elements/mouse_3.html"></load-html>
|
||||
<load-html data-path="ascii_elements/mouse_4.html"></load-html>
|
||||
|
||||
<load-html data-path="ascii_elements/banner_1.html"></load-html>
|
||||
|
||||
|
||||
<!--
|
||||
ROLE TITLE
|
||||
-->
|
||||
<section id="role_title">
|
||||
<figure id="name" style="gap:10px 30px;" data-flex="horizontal center wrap">
|
||||
<pre>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
</figure>
|
||||
<figure id="title" style="gap:10px 30px; margin:30px 0px;" data-flex="horizontal center wrap">
|
||||
<pre>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
</figure>
|
||||
</section>
|
||||
<!--
|
||||
END ROLE TITLE
|
||||
-->
|
||||
|
||||
|
||||
<!--
|
||||
CV INFOS
|
||||
-->
|
||||
<section id="cv_infos" data-flex="vertical left">
|
||||
<details>
|
||||
<summary>
|
||||
<h2>Informatique</h2>
|
||||
</summary>
|
||||
<ul>
|
||||
<li>École 42, Paris, 2021-2022, tronc commun - niveau 10</li>
|
||||
<li>SIMPLON, développeur full-stack JavaScript, 2018</li>
|
||||
<li>Backend, plugin WordPress avec API Google Maps, <a href="https://2022.lejourdesprofs.org/#programme" target="_blank" rel="noopener noreferrer"></a>, 2022</li>
|
||||
<li>Full-stack, reprise d’un site d’artistes en php, <a href="https://www.bloc-house.org" target="_blank" rel="noopener noreferrer"></a>, 2021</li>
|
||||
<li>Site vitrine, association Kosmopolit, <a href="https://kosmopolit.bitbucket.io" target="_blank" rel="noopener noreferrer"></a>, 2021</li>
|
||||
</ul>
|
||||
</details>
|
||||
<details>
|
||||
<summary>
|
||||
<h2>Bénévolat</h2>
|
||||
</summary>
|
||||
<ul>
|
||||
<li>Cogestion des bénévoles d'un camp de réfugiés, UTOPIA 56, Grande-Synthe, France, 2016</li>
|
||||
<li>Formateur contraception testiculaire, ZEROMILLIONS, Paris, France, 2021-2023</li>
|
||||
<li>Distribution de nourriture (Migrants-Wilson & Secours Populaire)</li>
|
||||
</ul>
|
||||
</details>
|
||||
<details>
|
||||
<summary>
|
||||
<h2>Outils informatiques</h2>
|
||||
</summary>
|
||||
<ul>
|
||||
<li>C, HTML, CSS, C++, JavaScript, script bash, PHP, Svelte, TypeScript</li>
|
||||
<li>Git, Docker, Nginx, MariaDB, Node.js, Nest.js, WebSocket, Express, npm</li>
|
||||
<li>Emails, sending emails, receiving emails, deleting emails ("the it crowd", Jane Barber s01e01)</li>
|
||||
</ul>
|
||||
</details>
|
||||
<details>
|
||||
<summary>
|
||||
<h2>Études d’architecture</h2>
|
||||
</summary>
|
||||
<ul>
|
||||
<li>Master 1, ENSAPM, ESA, ENSAV, île-de-france, France, 2008-2014</li>
|
||||
<li>Stages : PERSPECTIVA (Houston, Texas, 2009), AS (Paris, 2012), JC QUINTON (Paris 2014)</li>
|
||||
</ul>
|
||||
</details>
|
||||
<details>
|
||||
<summary>
|
||||
<h2>Centres d'intérêts</h2>
|
||||
</summary>
|
||||
<ul>
|
||||
<li>Vélo : longs voyages à vélo, construction de vélos retro-directs</li>
|
||||
<li>Magie : cartes, pièces, scène</li>
|
||||
<li>Autonomie : recherche des moyens de vivre avec le minimum d'affaires</li>
|
||||
</ul>
|
||||
</details>
|
||||
</section>
|
||||
<!--
|
||||
END CV INFOS
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
PERSONNAL INFOS
|
||||
-->
|
||||
<section id="personnal_infos" style="margin: 50px auto;">
|
||||
<p>hugogogo@protonmail.com</p>
|
||||
</section>
|
||||
<!--
|
||||
END PERSONNAL INFOS
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
MOUSE 1
|
||||
-->
|
||||
<figure class="frames_container mouse" id="mouse_1">
|
||||
<pre class="frame f1">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f2">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f3">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f4">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
</figure>
|
||||
<!--
|
||||
END MOUSE 1
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
MOUSE 2
|
||||
-->
|
||||
<figure class="frames_container mouse" id="mouse_2">
|
||||
<pre class="frame f1">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f2">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f3">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f4">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
</figure>
|
||||
<!--
|
||||
END MOUSE 2
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
MOUSE 3
|
||||
-->
|
||||
<figure class="frames_container mouse" id="mouse_3">
|
||||
<pre class="frame f1">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f2">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f3">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f4">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
</figure>
|
||||
<!--
|
||||
END MOUSE 3
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
MOUSE 4
|
||||
-->
|
||||
<figure class="frames_container mouse" id="mouse_4">
|
||||
<pre class="frame f1">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f2">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f3">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="frame f4">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
</figure>
|
||||
<!--
|
||||
END MOUSE 4
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
BANNER 1
|
||||
-->
|
||||
<figure id="banner_1">
|
||||
<pre class="banner">
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
</figure>
|
||||
<!--
|
||||
END BANNER 1
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
BANNER 2
|
||||
-->
|
||||
<figure id="banner_2">
|
||||
<pre class="banner reverse t1_0">
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<div class="insert_html" data-path="ascii_elements/banner_1.html" data-new_class="t1_5" data-class_target="banner"></div>
|
||||
</figure>
|
||||
<!--
|
||||
END BANNER 2
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
BANNER 3
|
||||
-->
|
||||
<figure id="banner_3">
|
||||
<pre class="banner t2_0 reverse">
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
</figure>
|
||||
<!--
|
||||
END BANNER 3
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
BANNER 4
|
||||
-->
|
||||
<figure id="banner_4">
|
||||
<pre class="banner t0_5">
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
<pre class="banner anime reverse">
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
|
||||
</figure>
|
||||
<!--
|
||||
END BANNER 4
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--
|
||||
BANNER 5
|
||||
-->
|
||||
<figure id="banner_5">
|
||||
<pre class="banner reverse">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</pre>
|
||||
</figure>
|
||||
<!--
|
||||
END BANNER 5
|
||||
-->
|
||||
|
||||
|
||||
|
||||
<figure class="frames_container mouse" id="mouse_test">
|
||||
<div class="ascii frame f1"></div><div class="ascii frame f2"></div><div class="ascii frame f3"></div><div class="ascii frame f4"></div>
|
||||
</figure>
|
||||
|
||||
|
||||
<p>here</p>
|
||||
<div id="test"></div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Define the file to watch
|
||||
file_to_watch="./"
|
||||
|
||||
# Watch for modification events on the file continuously, with a minimum interval of 1s
|
||||
last_modified=0
|
||||
while read -r directory events filename; do
|
||||
current_time=$(date +%s) # Get the current time in seconds
|
||||
|
||||
if [ "$current_time" -gt "$last_modified" ]; then
|
||||
last_modified=$current_time
|
||||
echo "$current_time - The file $filename was modified."
|
||||
fi
|
||||
done < <(inotifywait -q --monitor --event modify "$file_to_watch")
|
||||
|
||||
@@ -1,53 +0,0 @@
|
||||
|
||||
// https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_templates_and_slots
|
||||
|
||||
customElements.define(
|
||||
"load-html",
|
||||
class extends HTMLElement {
|
||||
constructor() {
|
||||
|
||||
super();
|
||||
|
||||
let path = this.dataset.path;
|
||||
|
||||
let load_content = (content_to_load) => {
|
||||
let template = document.createElement('template');
|
||||
template.innerHTML = content_to_load;
|
||||
let templateContent = template.content;
|
||||
//this.appendChild(templateContent.cloneNode(true));
|
||||
this.replaceWith(templateContent.cloneNode(true));
|
||||
}
|
||||
|
||||
fetch(path)
|
||||
.then(response => response.text())
|
||||
.then(load_content)
|
||||
.catch(error => console.log('Error:', error));
|
||||
}
|
||||
},
|
||||
);
|
||||
|
||||
customElements.define(
|
||||
"load-html-shadow",
|
||||
class extends HTMLElement {
|
||||
constructor() {
|
||||
|
||||
super();
|
||||
|
||||
let path = this.dataset.path;
|
||||
|
||||
let load_content = (content_to_load) => {
|
||||
let template = document.createElement('template');
|
||||
template.innerHTML = content_to_load;
|
||||
let templateContent = template.content;
|
||||
const shadowRoot = this.attachShadow({ mode: "open" });
|
||||
shadowRoot.appendChild(templateContent.cloneNode(true));
|
||||
}
|
||||
|
||||
fetch(path)
|
||||
.then(response => response.text())
|
||||
.then(load_content)
|
||||
.catch(error => console.log('Error:', error));
|
||||
}
|
||||
},
|
||||
);
|
||||
|
||||
@@ -1,89 +0,0 @@
|
||||
|
||||
// https://stackoverflow.com/questions/494143/creating-a-new-dom-element-from-an-html-string-using-built-in-dom-methods-or-pro
|
||||
function deserialize_html(html) {
|
||||
let template = document.createElement('template');
|
||||
template.innerHTML = html;
|
||||
return template.content.children;
|
||||
// use .children instead of childNodes to avoid #text elements :
|
||||
// https://stackoverflow.com/questions/35199729/javascript-meaning-of-text-in-htmlnode-childnodesi-nodename
|
||||
//return template.content.childNodes;
|
||||
}
|
||||
|
||||
function fill_content(new_content, old_content, target_name) {
|
||||
if (!old_content)
|
||||
return;
|
||||
let elements_with_class = find_elements_by_class(new_content, "content_html");
|
||||
let elements_to_fill = find_elements_by_data(elements_with_class, target_name, "path_target");
|
||||
elements_to_fill.forEach(el => el.outerHTML = old_content);
|
||||
}
|
||||
|
||||
function find_elements_by_class(html_collection, class_to_find) {
|
||||
for (element of html_collection) {
|
||||
if (element.nodeName === "STYLE")
|
||||
continue;
|
||||
if (element.nodeName === "SCRIPT")
|
||||
continue;
|
||||
return element.getElementsByClassName(class_to_find);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
function find_elements_by_data(html_collection, data_to_compare, dataset_name) {
|
||||
let matching_elements = [];
|
||||
if (!data_to_compare)
|
||||
return matching_elements;
|
||||
for (element of html_collection) {
|
||||
|
||||
let data = [...element.querySelectorAll(`[data-${dataset_name}='${data_to_compare}']`)];
|
||||
//let data = element.dataset[dataset_name];
|
||||
|
||||
//if (data_to_compare === data)
|
||||
matching_elements.push(...data);
|
||||
}
|
||||
// if (data_to_compare === "banner")
|
||||
return matching_elements;
|
||||
}
|
||||
|
||||
function transfert_class(element, new_content) {
|
||||
let class_target = element.dataset.class_target;
|
||||
let new_class = element.dataset.new_class;
|
||||
if (!class_target)
|
||||
return;
|
||||
if (!new_class)
|
||||
return;
|
||||
let elements_with_class = find_elements_by_data(new_content, class_target, "class_target");
|
||||
elements_with_class.forEach(el => el.classList.add(new_class));
|
||||
}
|
||||
|
||||
function replace_html(element_to_replace, content_to_load) {
|
||||
let old_content = element_to_replace.innerHTML;
|
||||
let new_content = deserialize_html(content_to_load);
|
||||
let target_name = element_to_replace.dataset.path_target;
|
||||
transfert_class(element_to_replace, new_content);
|
||||
// console.log("new_content: ", new_content);
|
||||
fill_content(new_content, old_content, target_name);
|
||||
element_to_replace.replaceWith(...new_content);
|
||||
};
|
||||
|
||||
function load_html() {
|
||||
let elements = document.getElementsByClassName("load_html");
|
||||
for (let element_to_replace of elements) {
|
||||
let path = (element_to_replace.dataset.path);
|
||||
if (!path)
|
||||
continue;
|
||||
fetch(path)
|
||||
.then(response => response.text())
|
||||
.then(content_to_load => replace_html(element_to_replace, content_to_load))
|
||||
.catch(error => console.log('Error:', error));
|
||||
};
|
||||
}
|
||||
|
||||
// create an observer on everytime some HTML is loaded on the whole page (heavy solution...)
|
||||
const callback = (mutation_list, observer) => load_html();
|
||||
const observer = new MutationObserver(callback);
|
||||
const targetNode = document.body;
|
||||
const config = { attributes: true, childList: true, subtree: true };
|
||||
// Start observing the target node for configured mutations
|
||||
observer.observe(targetNode, config);
|
||||
|
||||
|
||||
33
styles/elements/banners.css
Normal file
@@ -0,0 +1,33 @@
|
||||
|
||||
pre.banner {
|
||||
position: relative;
|
||||
margin: 10px 0px 10px -100px;
|
||||
animation-name: slide;
|
||||
animation-iteration-count: infinite;
|
||||
animation-duration: 2s;
|
||||
animation-timing-function: linear;
|
||||
animation-direction: normal;
|
||||
}
|
||||
pre.banner.pause {
|
||||
animation-play-state: paused;
|
||||
}
|
||||
pre.banner.reverse {
|
||||
animation-direction: reverse;
|
||||
}
|
||||
pre.banner.t0_5 {
|
||||
animation-duration: 0.5s;
|
||||
}
|
||||
pre.banner.t1_0 {
|
||||
animation-duration: 1s;
|
||||
}
|
||||
pre.banner.t1_5 {
|
||||
animation-duration: 1.5s;
|
||||
}
|
||||
pre.banner.t2_0 {
|
||||
animation-duration: 2s;
|
||||
}
|
||||
@keyframes slide {
|
||||
from {left:0;}
|
||||
to {left:2.4em;}
|
||||
}
|
||||
|
||||
33
styles/elements/cv.css
Normal file
@@ -0,0 +1,33 @@
|
||||
|
||||
#cv_infos {
|
||||
margin: 10px 10px 30px 10px;
|
||||
}
|
||||
#cv_infos h1,
|
||||
#cv_infos h2,
|
||||
#cv_infos h3,
|
||||
#cv_infos h4,
|
||||
#cv_infos h5,
|
||||
#cv_infos h6 {
|
||||
/*
|
||||
place-self: center;
|
||||
margin-left: var(--list-padding);
|
||||
*/
|
||||
}
|
||||
#cv_infos details {
|
||||
margin: 10px 0px;
|
||||
}
|
||||
#cv_infos summary {
|
||||
/*
|
||||
*/
|
||||
margin-left: var(--list-padding);
|
||||
}
|
||||
#cv_infos summary + * {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
details summary {
|
||||
/*
|
||||
list-style-type: none;
|
||||
*/
|
||||
list-style-position: outside;
|
||||
}
|
||||
3
styles/elements/infos.css
Normal file
@@ -0,0 +1,3 @@
|
||||
|
||||
#personnal_infos {
|
||||
}
|
||||
59
styles/elements/mouses.css
Normal file
@@ -0,0 +1,59 @@
|
||||
|
||||
.mouse {
|
||||
position: relative;
|
||||
margin: 0px;
|
||||
}
|
||||
.frames_container {
|
||||
display: grid;
|
||||
width: fit-content;
|
||||
|
||||
/*
|
||||
border: 1px solid blue;
|
||||
*/
|
||||
}
|
||||
.frame {
|
||||
position: relative;
|
||||
grid-column: 1;
|
||||
grid-row: 1;
|
||||
margin: auto auto 0px 0px;
|
||||
|
||||
/*
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
|
||||
border: 1px solid red;
|
||||
*/
|
||||
|
||||
opacity: 0;
|
||||
--tframes: 2s;
|
||||
animation-name: ascii_frame;
|
||||
animation-iteration-count: infinite;
|
||||
animation-duration: var(--tframes);
|
||||
animation-timing-function: linear;
|
||||
animation-direction: normal;
|
||||
}
|
||||
|
||||
.frame.f2 {animation-delay: calc(var(--tframes) * 25/100);}
|
||||
.frame.f3 {animation-delay: calc(var(--tframes) * 50/100);}
|
||||
.frame.f4 {animation-delay: calc(var(--tframes) * 75/100);}
|
||||
|
||||
@keyframes ascii_frame {
|
||||
0% {opacity: 1;}
|
||||
25% {opacity: 1;}
|
||||
25.1% {opacity: 0;}
|
||||
100% {opacity: 0;}
|
||||
}
|
||||
|
||||
#mouse_1 {
|
||||
place-self: center;
|
||||
}
|
||||
#mouse_2 {
|
||||
left: 10%;
|
||||
}
|
||||
#mouse_3 {
|
||||
left: 60%;
|
||||
}
|
||||
#mouse_4 {
|
||||
left: 20%;
|
||||
}
|
||||
|
||||
97
styles/elements/test.css
Normal file
@@ -0,0 +1,97 @@
|
||||
#test {
|
||||
border: 1px solid blue;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background-image: url(" \
|
||||
data:image/svg+xml;utf8, \
|
||||
<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='50px' width='100%'>\
|
||||
<text x='0' y='15'>\
|
||||
I love SVG!\
|
||||
</text>\
|
||||
</svg>");
|
||||
}
|
||||
/*
|
||||
#test::after {
|
||||
content: " \a \a \a \a \a \a \a \a \a \a \a \a \a \a \a ";
|
||||
white-space: pre;
|
||||
}
|
||||
*/
|
||||
|
||||
#mouse_test .frame.f1::before {
|
||||
content: " \A \A \A \A \A \A \A \A \A \A \A \A \A ";
|
||||
/*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
*/
|
||||
}
|
||||
|
||||
#mouse_test .frame.f2::before {
|
||||
content: " \A \A \A \A \A \A \A \A \A \A \A \A \A ";
|
||||
/*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
*/
|
||||
}
|
||||
|
||||
#mouse_test .frame.f3::before {
|
||||
content: " \A \A \A \A \A \A \A \A \A \A \A \A \A ";
|
||||
/*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
*/
|
||||
}
|
||||
|
||||
#mouse_test .frame.f4::before {
|
||||
content: " \A \A \A \A \A \A \A \A \A \A \A ";
|
||||
/*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
*/
|
||||
}
|
||||
|
||||
8
styles/elements/title.css
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
#role_title #name {
|
||||
margin:30px 0px 40px 0px;
|
||||
}
|
||||
#role_title #title {
|
||||
margin:30px 0px 40px 0px;
|
||||
}
|
||||
|
||||
BIN
styles/fonts/notomono/NotoMono-Dot.ttf
Normal file
BIN
styles/fonts/notomono/NotoMono-Dot.woff
Normal file
18299
styles/fonts/notomono/NotoMono.sfd
Normal file
94
styles/fonts/notomono/dot_1.sla
Normal file
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<SCRIBUSUTF8NEW Version="1.5.8">
|
||||
<DOCUMENT ANZPAGES="1" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" PRESET="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" ORIENTATION="0" PAGESIZE="Custom" FIRSTNUM="1" BOOK="0" AUTOSPALTEN="1" ABSTSPALTEN="792" UNITS="0" DFONT="DejaVu Sans Book" DSIZE="12" DCOL="1" DGAP="0" TabFill="" TabWidth="36" TextDistLeft="0" TextDistRight="0" TextDistBottom="0" TextDistTop="0" FirstLineOffset="1" AUTHOR="" COMMENTS="" KEYWORDS="" PUBLISHER="" DOCDATE="" DOCTYPE="" DOCFORMAT="" DOCIDENT="" DOCSOURCE="" DOCLANGINFO="" DOCRELATION="" DOCCOVER="" DOCRIGHTS="" DOCCONTRIB="" TITLE="" SUBJECT="" VHOCH="33" VHOCHSC="66" VTIEF="33" VTIEFSC="66" VKAPIT="75" BASEGRID="14.4" BASEO="0" AUTOL="100" UnderlinePos="-1" UnderlineWidth="-1" StrikeThruPos="-1" StrikeThruWidth="-1" GROUPC="1" HCMS="0" DPSo="0" DPSFo="0" DPuse="0" DPgam="0" DPbla="1" DPPr="ISO Coated v2 300% (basICColor)" DPIn="sRGB display profile (ICC v2.2)" DPInCMYK="ISO Coated v2 300% (basICColor)" DPIn2="sRGB display profile (ICC v2.2)" DPIn3="ISO Coated v2 300% (basICColor)" DISc="1" DIIm="0" ALAYER="0" LANGUAGE="en_US" AUTOMATIC="1" AUTOCHECK="0" GUIDELOCK="0" SnapToGuides="1" SnapToGrid="0" SnapToElement="1" MINGRID="20" MAJGRID="100" SHOWGRID="0" SHOWGUIDES="1" showcolborders="1" SHOWFRAME="1" SHOWControl="0" SHOWLAYERM="0" SHOWMARGIN="1" SHOWBASE="0" SHOWPICT="1" SHOWLINK="0" rulerMode="1" showrulers="1" showBleed="1" rulerXoffset="0" rulerYoffset="0" GuideRad="10" GRAB="4" POLYC="4" POLYF="0.502045814642449" POLYR="0" POLYIR="0" POLYCUR="0" POLYOCUR="0" POLYS="0" arcStartAngle="30" arcSweepAngle="300" spiralStartAngle="0" spiralEndAngle="1080" spiralFactor="1.2" AutoSave="1" AutoSaveTime="600000" AutoSaveCount="1" AutoSaveKeep="0" AUtoSaveInDocDir="1" AutoSaveDir="" ScratchBottom="20" ScratchLeft="100" ScratchRight="100" ScratchTop="20" GapHorizontal="0" GapVertical="40" StartArrow="0" EndArrow="0" PEN="Black" BRUSH="None" PENLINE="Black" PENTEXT="Black" StrokeText="Black" TextBackGround="None" TextLineColor="None" TextBackGroundShade="100" TextLineShade="100" TextPenShade="100" TextStrokeShade="100" STIL="1" STILLINE="1" WIDTH="1" WIDTHLINE="1" PENSHADE="100" LINESHADE="100" BRUSHSHADE="100" CPICT="None" PICTSHADE="100" CSPICT="None" PICTSSHADE="100" PICTSCX="1" PICTSCY="1" PSCALE="0" PASPECT="1" EmbeddedPath="0" HalfRes="1" dispX="10" dispY="10" constrain="15" MINORC="#00ff00" MAJORC="#00ff00" GuideC="#000080" BaseC="#c0c0c0" renderStack="2 0 4 1 3" GridType="0" PAGEC="#ffffff" MARGC="#0000ff" RANDF="0" currentProfile="PDF 1.4" calligraphicPenFillColor="Black" calligraphicPenLineColor="Black" calligraphicPenFillColorShade="100" calligraphicPenLineColorShade="100" calligraphicPenLineWidth="1" calligraphicPenAngle="0" calligraphicPenWidth="10" calligraphicPenStyle="1">
|
||||
<CheckProfile Name="PDF 1.3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.5" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.6" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-1a" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="1" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PostScript" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="0" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<COLOR NAME="Black" SPACE="CMYK" C="0" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Blue" SPACE="RGB" R="0" G="0" B="255"/>
|
||||
<COLOR NAME="Cool Black" SPACE="CMYK" C="60" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Cyan" SPACE="CMYK" C="100" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Green" SPACE="RGB" R="0" G="255" B="0"/>
|
||||
<COLOR NAME="Magenta" SPACE="CMYK" C="0" M="100" Y="0" K="0"/>
|
||||
<COLOR NAME="Red" SPACE="RGB" R="255" G="0" B="0"/>
|
||||
<COLOR NAME="Registration" SPACE="CMYK" C="100" M="100" Y="100" K="100" Register="1"/>
|
||||
<COLOR NAME="Rich Black" SPACE="CMYK" C="60" M="40" Y="40" K="100"/>
|
||||
<COLOR NAME="Warm Black" SPACE="CMYK" C="0" M="60" Y="29.8039215686275" K="100"/>
|
||||
<COLOR NAME="White" SPACE="CMYK" C="0" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Yellow" SPACE="CMYK" C="0" M="0" Y="100" K="0"/>
|
||||
<HYPHEN/>
|
||||
<CHARSTYLE CNAME="Default Character Style" DefaultStyle="1" FONT="DejaVu Sans Book" FONTSIZE="12" FONTFEATURES="" FEATURES="inherit" FCOLOR="Black" FSHADE="100" HyphenWordMin="3" SCOLOR="Black" BGCOLOR="None" BGSHADE="100" SSHADE="100" TXTSHX="5" TXTSHY="-5" TXTOUT="1" TXTULP="-0.1" TXTULW="-0.1" TXTSTP="-0.1" TXTSTW="-0.1" SCALEH="100" SCALEV="100" BASEO="0" KERN="0" LANGUAGE="en_US"/>
|
||||
<STYLE NAME="Default Paragraph Style" DefaultStyle="1" ALIGN="0" DIRECTION="0" LINESPMode="0" LINESP="15" INDENT="0" RMARGIN="0" FIRST="0" VOR="0" NACH="0" ParagraphEffectOffset="0" DROP="0" DROPLIN="2" Bullet="0" Numeration="0" HyphenConsecutiveLines="2" BCOLOR="None" BSHADE="100"/>
|
||||
<TableStyle NAME="Default Table Style" DefaultStyle="1" FillColor="None" FillShade="100">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</TableStyle>
|
||||
<CellStyle NAME="Default Cell Style" DefaultStyle="1" FillColor="None" FillShade="100" LeftPadding="1" RightPadding="1" TopPadding="1" BottomPadding="1">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</CellStyle>
|
||||
<LAYERS NUMMER="0" LEVEL="0" NAME="Background" SICHTBAR="1" DRUCKEN="1" EDIT="1" SELECT="0" FLOW="1" TRANS="1" BLEND="0" OUTL="0" LAYERC="#000000"/>
|
||||
<Printer firstUse="1" toFile="0" useAltPrintCommand="0" outputSeparations="0" useSpotColors="1" useColor="1" mirrorH="0" mirrorV="0" useICC="0" doGCR="0" doClip="0" setDevParam="0" useDocBleeds="1" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" includePDFMarks="1" PSLevel="3" PrintEngine="3" markLength="20.0016" markOffset="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" printer="Photosmart-C4400-series" filename="" separationName="All" printerCommand=""/>
|
||||
<PDF firstUse="1" Thumbnails="0" Articles="0" Bookmarks="0" Compress="1" CMethod="0" Quality="0" EmbedPDF="0" MirrorH="0" MirrorV="0" Clip="0" rangeSel="0" rangeTxt="" RotateDeg="0" PresentMode="0" RecalcPic="0" FontEmbedding="0" Grayscale="0" RGBMode="1" UseProfiles="0" UseProfiles2="0" Binding="0" PicRes="300" Resolution="300" Version="14" Intent="1" Intent2="0" SolidP="sRGB display profile (ICC v2.2)" ImageP="sRGB display profile (ICC v2.2)" PrintP="ISO Coated v2 300% (basICColor)" InfoString="" BTop="0" BLeft="0" BRight="0" BBottom="0" useDocBleeds="0" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" docInfoMarks="0" markLength="20" markOffset="0" ImagePr="0" PassOwner="" PassUser="" Permissions="-4" Encrypt="0" UseLayers="0" UseLpi="0" UseSpotColors="1" doMultiFile="0" displayBookmarks="0" displayFullscreen="0" displayLayers="0" displayThumbs="0" hideMenuBar="0" hideToolBar="0" fitWindow="0" openAfterExport="0" PageLayout="0" openAction="">
|
||||
<LPI Color="" Frequency="0" Angle="0" SpotFunction="0"/>
|
||||
<LPI Color="Black" Frequency="133" Angle="45" SpotFunction="3"/>
|
||||
<LPI Color="Cyan" Frequency="133" Angle="105" SpotFunction="3"/>
|
||||
<LPI Color="Magenta" Frequency="133" Angle="75" SpotFunction="3"/>
|
||||
<LPI Color="Yellow" Frequency="133" Angle="90" SpotFunction="3"/>
|
||||
</PDF>
|
||||
<DocItemAttributes/>
|
||||
<TablesOfContents/>
|
||||
<NotesStyles>
|
||||
<notesStyle Name="Default" Start="1" Endnotes="0" Type="Type_1_2_3" Range="0" Prefix="" Suffix=")" AutoHeight="1" AutoWidth="1" AutoRemove="1" AutoWeld="1" SuperNote="1" SuperMaster="1" MarksStyle="" NotesStyle=""/>
|
||||
</NotesStyles>
|
||||
<PageSets>
|
||||
<Set Name="Single Page" FirstPage="0" Rows="1" Columns="1"/>
|
||||
<Set Name="Facing Pages" FirstPage="1" Rows="1" Columns="2">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="3-Fold" FirstPage="0" Rows="1" Columns="3">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="4-Fold" FirstPage="0" Rows="1" Columns="4">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle Left"/>
|
||||
<PageNames Name="Middle Right"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
</PageSets>
|
||||
<Sections>
|
||||
<Section Number="0" Name="0" From="0" To="0" Type="Type_1_2_3" Start="1" Reversed="0" Active="1" FillChar="0" FieldWidth="0"/>
|
||||
</Sections>
|
||||
<MASTERPAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="Normal" MNAM="" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="" MNAM="Normal" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGEOBJECT XPOS="632.739856876167" YPOS="962" OwnPage="0" ItemID="1270269648" PTYPE="6" WIDTH="163.520286247666" HEIGHT="164" FRTYPE="1" CLIPEDIT="0" PWIDTH="0" PCOLOR="Black" PLINEART="1" path="M163.52 82 C163.52 127.289 126.917 164 81.7601 164 C36.6053 164 0 127.289 0 82 C0 36.7127 36.6053 0 81.7601 0 C126.917 0 163.52 36.7127 163.52 82 Z" copath="M163.52 82 C163.52 127.289 126.917 164 81.7601 164 C36.6053 164 0 127.289 0 82 C0 36.7127 36.6053 0 81.7601 0 C126.917 0 163.52 36.7127 163.52 82 Z" fillRule="0" gXpos="632.739856876167" gYpos="962" gWidth="0" gHeight="0" LAYER="0"/>
|
||||
</DOCUMENT>
|
||||
</SCRIBUSUTF8NEW>
|
||||
7
styles/fonts/notomono/dot_1.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg version="1.1" height="2048pt" xmlns:xlink="http://www.w3.org/1999/xlink" width="1229pt" viewBox="0 0 1229 2048" xmlns="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
||||
<defs/>
|
||||
<g id="Background" inkscape:label="Background" inkscape:groupmode="layer">
|
||||
<path d="M163.52 82 C163.52 127.289 126.917 164 81.7601 164 C36.6053 164 0 127.289 0 82 C0 36.7127 36.6053 0 81.7601 0 C126.917 0 163.52 36.7127 163.52 82 Z" style="fill:#171615; fill-rule:nonzero;stroke:none;" transform="translate(532.74, 942)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 601 B |
94
styles/fonts/notomono/dot_2.sla
Normal file
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<SCRIBUSUTF8NEW Version="1.5.8">
|
||||
<DOCUMENT ANZPAGES="1" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" PRESET="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" ORIENTATION="0" PAGESIZE="Custom" FIRSTNUM="1" BOOK="0" AUTOSPALTEN="1" ABSTSPALTEN="792" UNITS="0" DFONT="DejaVu Sans Book" DSIZE="12" DCOL="1" DGAP="0" TabFill="" TabWidth="36" TextDistLeft="0" TextDistRight="0" TextDistBottom="0" TextDistTop="0" FirstLineOffset="1" AUTHOR="" COMMENTS="" KEYWORDS="" PUBLISHER="" DOCDATE="" DOCTYPE="" DOCFORMAT="" DOCIDENT="" DOCSOURCE="" DOCLANGINFO="" DOCRELATION="" DOCCOVER="" DOCRIGHTS="" DOCCONTRIB="" TITLE="" SUBJECT="" VHOCH="33" VHOCHSC="66" VTIEF="33" VTIEFSC="66" VKAPIT="75" BASEGRID="14.4" BASEO="0" AUTOL="100" UnderlinePos="-1" UnderlineWidth="-1" StrikeThruPos="-1" StrikeThruWidth="-1" GROUPC="1" HCMS="0" DPSo="0" DPSFo="0" DPuse="0" DPgam="0" DPbla="1" DPPr="ISO Coated v2 300% (basICColor)" DPIn="sRGB display profile (ICC v2.2)" DPInCMYK="ISO Coated v2 300% (basICColor)" DPIn2="sRGB display profile (ICC v2.2)" DPIn3="ISO Coated v2 300% (basICColor)" DISc="1" DIIm="0" ALAYER="0" LANGUAGE="en_US" AUTOMATIC="1" AUTOCHECK="0" GUIDELOCK="0" SnapToGuides="1" SnapToGrid="0" SnapToElement="1" MINGRID="20" MAJGRID="100" SHOWGRID="0" SHOWGUIDES="1" showcolborders="1" SHOWFRAME="1" SHOWControl="0" SHOWLAYERM="0" SHOWMARGIN="1" SHOWBASE="0" SHOWPICT="1" SHOWLINK="0" rulerMode="1" showrulers="1" showBleed="1" rulerXoffset="0" rulerYoffset="0" GuideRad="10" GRAB="4" POLYC="4" POLYF="0.502045814642449" POLYR="0" POLYIR="0" POLYCUR="0" POLYOCUR="0" POLYS="0" arcStartAngle="30" arcSweepAngle="300" spiralStartAngle="0" spiralEndAngle="1080" spiralFactor="1.2" AutoSave="1" AutoSaveTime="600000" AutoSaveCount="1" AutoSaveKeep="0" AUtoSaveInDocDir="1" AutoSaveDir="" ScratchBottom="20" ScratchLeft="100" ScratchRight="100" ScratchTop="20" GapHorizontal="0" GapVertical="40" StartArrow="0" EndArrow="0" PEN="Black" BRUSH="None" PENLINE="Black" PENTEXT="Black" StrokeText="Black" TextBackGround="None" TextLineColor="None" TextBackGroundShade="100" TextLineShade="100" TextPenShade="100" TextStrokeShade="100" STIL="1" STILLINE="1" WIDTH="1" WIDTHLINE="1" PENSHADE="100" LINESHADE="100" BRUSHSHADE="100" CPICT="None" PICTSHADE="100" CSPICT="None" PICTSSHADE="100" PICTSCX="1" PICTSCY="1" PSCALE="0" PASPECT="1" EmbeddedPath="0" HalfRes="1" dispX="10" dispY="10" constrain="15" MINORC="#00ff00" MAJORC="#00ff00" GuideC="#000080" BaseC="#c0c0c0" renderStack="2 0 4 1 3" GridType="0" PAGEC="#ffffff" MARGC="#0000ff" RANDF="0" currentProfile="PDF 1.4" calligraphicPenFillColor="Black" calligraphicPenLineColor="Black" calligraphicPenFillColorShade="100" calligraphicPenLineColorShade="100" calligraphicPenLineWidth="1" calligraphicPenAngle="0" calligraphicPenWidth="10" calligraphicPenStyle="1">
|
||||
<CheckProfile Name="PDF 1.3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.5" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.6" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-1a" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="1" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PostScript" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="0" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<COLOR NAME="Black" SPACE="CMYK" C="0" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Blue" SPACE="RGB" R="0" G="0" B="255"/>
|
||||
<COLOR NAME="Cool Black" SPACE="CMYK" C="60" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Cyan" SPACE="CMYK" C="100" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Green" SPACE="RGB" R="0" G="255" B="0"/>
|
||||
<COLOR NAME="Magenta" SPACE="CMYK" C="0" M="100" Y="0" K="0"/>
|
||||
<COLOR NAME="Red" SPACE="RGB" R="255" G="0" B="0"/>
|
||||
<COLOR NAME="Registration" SPACE="CMYK" C="100" M="100" Y="100" K="100" Register="1"/>
|
||||
<COLOR NAME="Rich Black" SPACE="CMYK" C="60" M="40" Y="40" K="100"/>
|
||||
<COLOR NAME="Warm Black" SPACE="CMYK" C="0" M="60" Y="29.8039215686275" K="100"/>
|
||||
<COLOR NAME="White" SPACE="CMYK" C="0" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Yellow" SPACE="CMYK" C="0" M="0" Y="100" K="0"/>
|
||||
<HYPHEN/>
|
||||
<CHARSTYLE CNAME="Default Character Style" DefaultStyle="1" FONT="DejaVu Sans Book" FONTSIZE="12" FONTFEATURES="" FEATURES="inherit" FCOLOR="Black" FSHADE="100" HyphenWordMin="3" SCOLOR="Black" BGCOLOR="None" BGSHADE="100" SSHADE="100" TXTSHX="5" TXTSHY="-5" TXTOUT="1" TXTULP="-0.1" TXTULW="-0.1" TXTSTP="-0.1" TXTSTW="-0.1" SCALEH="100" SCALEV="100" BASEO="0" KERN="0" LANGUAGE="en_US"/>
|
||||
<STYLE NAME="Default Paragraph Style" DefaultStyle="1" ALIGN="0" DIRECTION="0" LINESPMode="0" LINESP="15" INDENT="0" RMARGIN="0" FIRST="0" VOR="0" NACH="0" ParagraphEffectOffset="0" DROP="0" DROPLIN="2" Bullet="0" Numeration="0" HyphenConsecutiveLines="2" BCOLOR="None" BSHADE="100"/>
|
||||
<TableStyle NAME="Default Table Style" DefaultStyle="1" FillColor="None" FillShade="100">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</TableStyle>
|
||||
<CellStyle NAME="Default Cell Style" DefaultStyle="1" FillColor="None" FillShade="100" LeftPadding="1" RightPadding="1" TopPadding="1" BottomPadding="1">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</CellStyle>
|
||||
<LAYERS NUMMER="0" LEVEL="0" NAME="Background" SICHTBAR="1" DRUCKEN="1" EDIT="1" SELECT="0" FLOW="1" TRANS="1" BLEND="0" OUTL="0" LAYERC="#000000"/>
|
||||
<Printer firstUse="1" toFile="0" useAltPrintCommand="0" outputSeparations="0" useSpotColors="1" useColor="1" mirrorH="0" mirrorV="0" useICC="0" doGCR="0" doClip="0" setDevParam="0" useDocBleeds="1" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" includePDFMarks="1" PSLevel="3" PrintEngine="3" markLength="20.0016" markOffset="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" printer="Photosmart-C4400-series" filename="" separationName="All" printerCommand=""/>
|
||||
<PDF firstUse="1" Thumbnails="0" Articles="0" Bookmarks="0" Compress="1" CMethod="0" Quality="0" EmbedPDF="0" MirrorH="0" MirrorV="0" Clip="0" rangeSel="0" rangeTxt="" RotateDeg="0" PresentMode="0" RecalcPic="0" FontEmbedding="0" Grayscale="0" RGBMode="1" UseProfiles="0" UseProfiles2="0" Binding="0" PicRes="300" Resolution="300" Version="14" Intent="1" Intent2="0" SolidP="sRGB display profile (ICC v2.2)" ImageP="sRGB display profile (ICC v2.2)" PrintP="ISO Coated v2 300% (basICColor)" InfoString="" BTop="0" BLeft="0" BRight="0" BBottom="0" useDocBleeds="0" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" docInfoMarks="0" markLength="20" markOffset="0" ImagePr="0" PassOwner="" PassUser="" Permissions="-4" Encrypt="0" UseLayers="0" UseLpi="0" UseSpotColors="1" doMultiFile="0" displayBookmarks="0" displayFullscreen="0" displayLayers="0" displayThumbs="0" hideMenuBar="0" hideToolBar="0" fitWindow="0" openAfterExport="0" PageLayout="0" openAction="">
|
||||
<LPI Color="" Frequency="0" Angle="0" SpotFunction="0"/>
|
||||
<LPI Color="Black" Frequency="133" Angle="45" SpotFunction="3"/>
|
||||
<LPI Color="Cyan" Frequency="133" Angle="105" SpotFunction="3"/>
|
||||
<LPI Color="Magenta" Frequency="133" Angle="75" SpotFunction="3"/>
|
||||
<LPI Color="Yellow" Frequency="133" Angle="90" SpotFunction="3"/>
|
||||
</PDF>
|
||||
<DocItemAttributes/>
|
||||
<TablesOfContents/>
|
||||
<NotesStyles>
|
||||
<notesStyle Name="Default" Start="1" Endnotes="0" Type="Type_1_2_3" Range="0" Prefix="" Suffix=")" AutoHeight="1" AutoWidth="1" AutoRemove="1" AutoWeld="1" SuperNote="1" SuperMaster="1" MarksStyle="" NotesStyle=""/>
|
||||
</NotesStyles>
|
||||
<PageSets>
|
||||
<Set Name="Single Page" FirstPage="0" Rows="1" Columns="1"/>
|
||||
<Set Name="Facing Pages" FirstPage="1" Rows="1" Columns="2">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="3-Fold" FirstPage="0" Rows="1" Columns="3">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="4-Fold" FirstPage="0" Rows="1" Columns="4">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle Left"/>
|
||||
<PageNames Name="Middle Right"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
</PageSets>
|
||||
<Sections>
|
||||
<Section Number="0" Name="0" From="0" To="0" Type="Type_1_2_3" Start="1" Reversed="0" Active="1" FillChar="0" FieldWidth="0"/>
|
||||
</Sections>
|
||||
<MASTERPAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="Normal" MNAM="" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="" MNAM="Normal" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGEOBJECT XPOS="550.658214063473" YPOS="880" OwnPage="0" ItemID="137988342" PTYPE="6" WIDTH="327.683571873055" HEIGHT="328" FRTYPE="1" CLIPEDIT="0" PWIDTH="1" PCOLOR="Black" PLINEART="1" path="M327.684 164 C327.684 254.578 254.332 328 163.842 328 C73.3545 328 0 254.578 0 164 C0 73.4253 73.3545 0 163.842 0 C254.332 0 327.684 73.4253 327.684 164 Z" copath="M327.684 164 C327.684 254.578 254.332 328 163.842 328 C73.3545 328 0 254.578 0 164 C0 73.4253 73.3545 0 163.842 0 C254.332 0 327.684 73.4253 327.684 164 Z" gXpos="550.658214063473" gYpos="880" gWidth="0" gHeight="0" LAYER="0"/>
|
||||
</DOCUMENT>
|
||||
</SCRIBUSUTF8NEW>
|
||||
7
styles/fonts/notomono/dot_2.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="1229pt" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" height="2048pt" xmlns="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" viewBox="0 0 1229 2048">
|
||||
<defs/>
|
||||
<g inkscape:label="Background" inkscape:groupmode="layer" id="Background">
|
||||
<path transform="translate(450.658, 860)" d="M327.684 164 C327.684 254.578 254.332 328 163.842 328 C73.3545 328 0 254.578 0 164 C0 73.4253 73.3545 0 163.842 0 C254.332 0 327.684 73.4253 327.684 164 Z" style="fill:#171615; fill-rule:evenodd;stroke:none;"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 609 B |
94
styles/fonts/notomono/dot_3.sla
Normal file
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<SCRIBUSUTF8NEW Version="1.5.8">
|
||||
<DOCUMENT ANZPAGES="1" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" PRESET="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" ORIENTATION="0" PAGESIZE="Custom" FIRSTNUM="1" BOOK="0" AUTOSPALTEN="1" ABSTSPALTEN="792" UNITS="0" DFONT="DejaVu Sans Book" DSIZE="12" DCOL="1" DGAP="0" TabFill="" TabWidth="36" TextDistLeft="0" TextDistRight="0" TextDistBottom="0" TextDistTop="0" FirstLineOffset="1" AUTHOR="" COMMENTS="" KEYWORDS="" PUBLISHER="" DOCDATE="" DOCTYPE="" DOCFORMAT="" DOCIDENT="" DOCSOURCE="" DOCLANGINFO="" DOCRELATION="" DOCCOVER="" DOCRIGHTS="" DOCCONTRIB="" TITLE="" SUBJECT="" VHOCH="33" VHOCHSC="66" VTIEF="33" VTIEFSC="66" VKAPIT="75" BASEGRID="14.4" BASEO="0" AUTOL="100" UnderlinePos="-1" UnderlineWidth="-1" StrikeThruPos="-1" StrikeThruWidth="-1" GROUPC="1" HCMS="0" DPSo="0" DPSFo="0" DPuse="0" DPgam="0" DPbla="1" DPPr="ISO Coated v2 300% (basICColor)" DPIn="sRGB display profile (ICC v2.2)" DPInCMYK="ISO Coated v2 300% (basICColor)" DPIn2="sRGB display profile (ICC v2.2)" DPIn3="ISO Coated v2 300% (basICColor)" DISc="1" DIIm="0" ALAYER="0" LANGUAGE="en_US" AUTOMATIC="1" AUTOCHECK="0" GUIDELOCK="0" SnapToGuides="1" SnapToGrid="0" SnapToElement="1" MINGRID="20" MAJGRID="100" SHOWGRID="0" SHOWGUIDES="1" showcolborders="1" SHOWFRAME="1" SHOWControl="0" SHOWLAYERM="0" SHOWMARGIN="1" SHOWBASE="0" SHOWPICT="1" SHOWLINK="0" rulerMode="1" showrulers="1" showBleed="1" rulerXoffset="0" rulerYoffset="0" GuideRad="10" GRAB="4" POLYC="4" POLYF="0.502045814642449" POLYR="0" POLYIR="0" POLYCUR="0" POLYOCUR="0" POLYS="0" arcStartAngle="30" arcSweepAngle="300" spiralStartAngle="0" spiralEndAngle="1080" spiralFactor="1.2" AutoSave="1" AutoSaveTime="600000" AutoSaveCount="1" AutoSaveKeep="0" AUtoSaveInDocDir="1" AutoSaveDir="" ScratchBottom="20" ScratchLeft="100" ScratchRight="100" ScratchTop="20" GapHorizontal="0" GapVertical="40" StartArrow="0" EndArrow="0" PEN="Black" BRUSH="None" PENLINE="Black" PENTEXT="Black" StrokeText="Black" TextBackGround="None" TextLineColor="None" TextBackGroundShade="100" TextLineShade="100" TextPenShade="100" TextStrokeShade="100" STIL="1" STILLINE="1" WIDTH="1" WIDTHLINE="1" PENSHADE="100" LINESHADE="100" BRUSHSHADE="100" CPICT="None" PICTSHADE="100" CSPICT="None" PICTSSHADE="100" PICTSCX="1" PICTSCY="1" PSCALE="0" PASPECT="1" EmbeddedPath="0" HalfRes="1" dispX="10" dispY="10" constrain="15" MINORC="#00ff00" MAJORC="#00ff00" GuideC="#000080" BaseC="#c0c0c0" renderStack="2 0 4 1 3" GridType="0" PAGEC="#ffffff" MARGC="#0000ff" RANDF="0" currentProfile="PDF 1.4" calligraphicPenFillColor="Black" calligraphicPenLineColor="Black" calligraphicPenFillColorShade="100" calligraphicPenLineColorShade="100" calligraphicPenLineWidth="1" calligraphicPenAngle="0" calligraphicPenWidth="10" calligraphicPenStyle="1">
|
||||
<CheckProfile Name="PDF 1.3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.5" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.6" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-1a" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="1" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PostScript" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="0" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<COLOR NAME="Black" SPACE="CMYK" C="0" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Blue" SPACE="RGB" R="0" G="0" B="255"/>
|
||||
<COLOR NAME="Cool Black" SPACE="CMYK" C="60" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Cyan" SPACE="CMYK" C="100" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Green" SPACE="RGB" R="0" G="255" B="0"/>
|
||||
<COLOR NAME="Magenta" SPACE="CMYK" C="0" M="100" Y="0" K="0"/>
|
||||
<COLOR NAME="Red" SPACE="RGB" R="255" G="0" B="0"/>
|
||||
<COLOR NAME="Registration" SPACE="CMYK" C="100" M="100" Y="100" K="100" Register="1"/>
|
||||
<COLOR NAME="Rich Black" SPACE="CMYK" C="60" M="40" Y="40" K="100"/>
|
||||
<COLOR NAME="Warm Black" SPACE="CMYK" C="0" M="60" Y="29.8039215686275" K="100"/>
|
||||
<COLOR NAME="White" SPACE="CMYK" C="0" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Yellow" SPACE="CMYK" C="0" M="0" Y="100" K="0"/>
|
||||
<HYPHEN/>
|
||||
<CHARSTYLE CNAME="Default Character Style" DefaultStyle="1" FONT="DejaVu Sans Book" FONTSIZE="12" FONTFEATURES="" FEATURES="inherit" FCOLOR="Black" FSHADE="100" HyphenWordMin="3" SCOLOR="Black" BGCOLOR="None" BGSHADE="100" SSHADE="100" TXTSHX="5" TXTSHY="-5" TXTOUT="1" TXTULP="-0.1" TXTULW="-0.1" TXTSTP="-0.1" TXTSTW="-0.1" SCALEH="100" SCALEV="100" BASEO="0" KERN="0" LANGUAGE="en_US"/>
|
||||
<STYLE NAME="Default Paragraph Style" DefaultStyle="1" ALIGN="0" DIRECTION="0" LINESPMode="0" LINESP="15" INDENT="0" RMARGIN="0" FIRST="0" VOR="0" NACH="0" ParagraphEffectOffset="0" DROP="0" DROPLIN="2" Bullet="0" Numeration="0" HyphenConsecutiveLines="2" BCOLOR="None" BSHADE="100"/>
|
||||
<TableStyle NAME="Default Table Style" DefaultStyle="1" FillColor="None" FillShade="100">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</TableStyle>
|
||||
<CellStyle NAME="Default Cell Style" DefaultStyle="1" FillColor="None" FillShade="100" LeftPadding="1" RightPadding="1" TopPadding="1" BottomPadding="1">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</CellStyle>
|
||||
<LAYERS NUMMER="0" LEVEL="0" NAME="Background" SICHTBAR="1" DRUCKEN="1" EDIT="1" SELECT="0" FLOW="1" TRANS="1" BLEND="0" OUTL="0" LAYERC="#000000"/>
|
||||
<Printer firstUse="1" toFile="0" useAltPrintCommand="0" outputSeparations="0" useSpotColors="1" useColor="1" mirrorH="0" mirrorV="0" useICC="0" doGCR="0" doClip="0" setDevParam="0" useDocBleeds="1" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" includePDFMarks="1" PSLevel="3" PrintEngine="3" markLength="20.0016" markOffset="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" printer="Photosmart-C4400-series" filename="" separationName="All" printerCommand=""/>
|
||||
<PDF firstUse="1" Thumbnails="0" Articles="0" Bookmarks="0" Compress="1" CMethod="0" Quality="0" EmbedPDF="0" MirrorH="0" MirrorV="0" Clip="0" rangeSel="0" rangeTxt="" RotateDeg="0" PresentMode="0" RecalcPic="0" FontEmbedding="0" Grayscale="0" RGBMode="1" UseProfiles="0" UseProfiles2="0" Binding="0" PicRes="300" Resolution="300" Version="14" Intent="1" Intent2="0" SolidP="sRGB display profile (ICC v2.2)" ImageP="sRGB display profile (ICC v2.2)" PrintP="ISO Coated v2 300% (basICColor)" InfoString="" BTop="0" BLeft="0" BRight="0" BBottom="0" useDocBleeds="0" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" docInfoMarks="0" markLength="20" markOffset="0" ImagePr="0" PassOwner="" PassUser="" Permissions="-4" Encrypt="0" UseLayers="0" UseLpi="0" UseSpotColors="1" doMultiFile="0" displayBookmarks="0" displayFullscreen="0" displayLayers="0" displayThumbs="0" hideMenuBar="0" hideToolBar="0" fitWindow="0" openAfterExport="0" PageLayout="0" openAction="">
|
||||
<LPI Color="" Frequency="0" Angle="0" SpotFunction="0"/>
|
||||
<LPI Color="Black" Frequency="133" Angle="45" SpotFunction="3"/>
|
||||
<LPI Color="Cyan" Frequency="133" Angle="105" SpotFunction="3"/>
|
||||
<LPI Color="Magenta" Frequency="133" Angle="75" SpotFunction="3"/>
|
||||
<LPI Color="Yellow" Frequency="133" Angle="90" SpotFunction="3"/>
|
||||
</PDF>
|
||||
<DocItemAttributes/>
|
||||
<TablesOfContents/>
|
||||
<NotesStyles>
|
||||
<notesStyle Name="Default" Start="1" Endnotes="0" Type="Type_1_2_3" Range="0" Prefix="" Suffix=")" AutoHeight="1" AutoWidth="1" AutoRemove="1" AutoWeld="1" SuperNote="1" SuperMaster="1" MarksStyle="" NotesStyle=""/>
|
||||
</NotesStyles>
|
||||
<PageSets>
|
||||
<Set Name="Single Page" FirstPage="0" Rows="1" Columns="1"/>
|
||||
<Set Name="Facing Pages" FirstPage="1" Rows="1" Columns="2">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="3-Fold" FirstPage="0" Rows="1" Columns="3">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="4-Fold" FirstPage="0" Rows="1" Columns="4">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle Left"/>
|
||||
<PageNames Name="Middle Right"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
</PageSets>
|
||||
<Sections>
|
||||
<Section Number="0" Name="0" From="0" To="0" Type="Type_1_2_3" Start="1" Reversed="0" Active="1" FillChar="0" FieldWidth="0"/>
|
||||
</Sections>
|
||||
<MASTERPAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="Normal" MNAM="" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="" MNAM="Normal" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGEOBJECT XPOS="468.576571250778" YPOS="798" OwnPage="0" ItemID="350383714" PTYPE="6" WIDTH="491.846857498444" HEIGHT="492" FRTYPE="1" CLIPEDIT="0" PWIDTH="1" PCOLOR="Black" PLINEART="1" path="M491.847 246 C491.847 381.867 381.748 492 245.923 492 C110.104 492 0 381.867 0 246 C0 110.138 110.104 0 245.923 0 C381.748 0 491.847 110.138 491.847 246 Z" copath="M491.847 246 C491.847 381.867 381.748 492 245.923 492 C110.104 492 0 381.867 0 246 C0 110.138 110.104 0 245.923 0 C381.748 0 491.847 110.138 491.847 246 Z" gXpos="468.576571250778" gYpos="798" gWidth="0" gHeight="0" LAYER="0"/>
|
||||
</DOCUMENT>
|
||||
</SCRIBUSUTF8NEW>
|
||||
7
styles/fonts/notomono/dot_3.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg viewBox="0 0 1229 2048" width="1229pt" xmlns:xlink="http://www.w3.org/1999/xlink" height="2048pt" xmlns="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1">
|
||||
<defs/>
|
||||
<g inkscape:label="Background" id="Background" inkscape:groupmode="layer">
|
||||
<path style="fill:#171615; fill-rule:evenodd;stroke:none;" d="M491.847 246 C491.847 381.867 381.748 492 245.923 492 C110.104 492 0 381.867 0 246 C0 110.138 110.104 0 245.923 0 C381.748 0 491.847 110.138 491.847 246 Z" transform="translate(368.577, 778)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 609 B |
94
styles/fonts/notomono/dot_4.sla
Normal file
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<SCRIBUSUTF8NEW Version="1.5.8">
|
||||
<DOCUMENT ANZPAGES="1" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" PRESET="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" ORIENTATION="0" PAGESIZE="Custom" FIRSTNUM="1" BOOK="0" AUTOSPALTEN="1" ABSTSPALTEN="792" UNITS="0" DFONT="DejaVu Sans Book" DSIZE="12" DCOL="1" DGAP="0" TabFill="" TabWidth="36" TextDistLeft="0" TextDistRight="0" TextDistBottom="0" TextDistTop="0" FirstLineOffset="1" AUTHOR="" COMMENTS="" KEYWORDS="" PUBLISHER="" DOCDATE="" DOCTYPE="" DOCFORMAT="" DOCIDENT="" DOCSOURCE="" DOCLANGINFO="" DOCRELATION="" DOCCOVER="" DOCRIGHTS="" DOCCONTRIB="" TITLE="" SUBJECT="" VHOCH="33" VHOCHSC="66" VTIEF="33" VTIEFSC="66" VKAPIT="75" BASEGRID="14.4" BASEO="0" AUTOL="100" UnderlinePos="-1" UnderlineWidth="-1" StrikeThruPos="-1" StrikeThruWidth="-1" GROUPC="1" HCMS="0" DPSo="0" DPSFo="0" DPuse="0" DPgam="0" DPbla="1" DPPr="ISO Coated v2 300% (basICColor)" DPIn="sRGB display profile (ICC v2.2)" DPInCMYK="ISO Coated v2 300% (basICColor)" DPIn2="sRGB display profile (ICC v2.2)" DPIn3="ISO Coated v2 300% (basICColor)" DISc="1" DIIm="0" ALAYER="0" LANGUAGE="en_US" AUTOMATIC="1" AUTOCHECK="0" GUIDELOCK="0" SnapToGuides="1" SnapToGrid="0" SnapToElement="1" MINGRID="20" MAJGRID="100" SHOWGRID="0" SHOWGUIDES="1" showcolborders="1" SHOWFRAME="1" SHOWControl="0" SHOWLAYERM="0" SHOWMARGIN="1" SHOWBASE="0" SHOWPICT="1" SHOWLINK="0" rulerMode="1" showrulers="1" showBleed="1" rulerXoffset="0" rulerYoffset="0" GuideRad="10" GRAB="4" POLYC="4" POLYF="0.502045814642449" POLYR="0" POLYIR="0" POLYCUR="0" POLYOCUR="0" POLYS="0" arcStartAngle="30" arcSweepAngle="300" spiralStartAngle="0" spiralEndAngle="1080" spiralFactor="1.2" AutoSave="1" AutoSaveTime="600000" AutoSaveCount="1" AutoSaveKeep="0" AUtoSaveInDocDir="1" AutoSaveDir="" ScratchBottom="20" ScratchLeft="100" ScratchRight="100" ScratchTop="20" GapHorizontal="0" GapVertical="40" StartArrow="0" EndArrow="0" PEN="Black" BRUSH="None" PENLINE="Black" PENTEXT="Black" StrokeText="Black" TextBackGround="None" TextLineColor="None" TextBackGroundShade="100" TextLineShade="100" TextPenShade="100" TextStrokeShade="100" STIL="1" STILLINE="1" WIDTH="1" WIDTHLINE="1" PENSHADE="100" LINESHADE="100" BRUSHSHADE="100" CPICT="None" PICTSHADE="100" CSPICT="None" PICTSSHADE="100" PICTSCX="1" PICTSCY="1" PSCALE="0" PASPECT="1" EmbeddedPath="0" HalfRes="1" dispX="10" dispY="10" constrain="15" MINORC="#00ff00" MAJORC="#00ff00" GuideC="#000080" BaseC="#c0c0c0" renderStack="2 0 4 1 3" GridType="0" PAGEC="#ffffff" MARGC="#0000ff" RANDF="0" currentProfile="PDF 1.4" calligraphicPenFillColor="Black" calligraphicPenLineColor="Black" calligraphicPenFillColorShade="100" calligraphicPenLineColorShade="100" calligraphicPenLineWidth="1" calligraphicPenAngle="0" calligraphicPenWidth="10" calligraphicPenStyle="1">
|
||||
<CheckProfile Name="PDF 1.3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.5" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.6" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-1a" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="1" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PostScript" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="0" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<COLOR NAME="Black" SPACE="CMYK" C="0" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Blue" SPACE="RGB" R="0" G="0" B="255"/>
|
||||
<COLOR NAME="Cool Black" SPACE="CMYK" C="60" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Cyan" SPACE="CMYK" C="100" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Green" SPACE="RGB" R="0" G="255" B="0"/>
|
||||
<COLOR NAME="Magenta" SPACE="CMYK" C="0" M="100" Y="0" K="0"/>
|
||||
<COLOR NAME="Red" SPACE="RGB" R="255" G="0" B="0"/>
|
||||
<COLOR NAME="Registration" SPACE="CMYK" C="100" M="100" Y="100" K="100" Register="1"/>
|
||||
<COLOR NAME="Rich Black" SPACE="CMYK" C="60" M="40" Y="40" K="100"/>
|
||||
<COLOR NAME="Warm Black" SPACE="CMYK" C="0" M="60" Y="29.8039215686275" K="100"/>
|
||||
<COLOR NAME="White" SPACE="CMYK" C="0" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Yellow" SPACE="CMYK" C="0" M="0" Y="100" K="0"/>
|
||||
<HYPHEN/>
|
||||
<CHARSTYLE CNAME="Default Character Style" DefaultStyle="1" FONT="DejaVu Sans Book" FONTSIZE="12" FONTFEATURES="" FEATURES="inherit" FCOLOR="Black" FSHADE="100" HyphenWordMin="3" SCOLOR="Black" BGCOLOR="None" BGSHADE="100" SSHADE="100" TXTSHX="5" TXTSHY="-5" TXTOUT="1" TXTULP="-0.1" TXTULW="-0.1" TXTSTP="-0.1" TXTSTW="-0.1" SCALEH="100" SCALEV="100" BASEO="0" KERN="0" LANGUAGE="en_US"/>
|
||||
<STYLE NAME="Default Paragraph Style" DefaultStyle="1" ALIGN="0" DIRECTION="0" LINESPMode="0" LINESP="15" INDENT="0" RMARGIN="0" FIRST="0" VOR="0" NACH="0" ParagraphEffectOffset="0" DROP="0" DROPLIN="2" Bullet="0" Numeration="0" HyphenConsecutiveLines="2" BCOLOR="None" BSHADE="100"/>
|
||||
<TableStyle NAME="Default Table Style" DefaultStyle="1" FillColor="None" FillShade="100">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</TableStyle>
|
||||
<CellStyle NAME="Default Cell Style" DefaultStyle="1" FillColor="None" FillShade="100" LeftPadding="1" RightPadding="1" TopPadding="1" BottomPadding="1">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</CellStyle>
|
||||
<LAYERS NUMMER="0" LEVEL="0" NAME="Background" SICHTBAR="1" DRUCKEN="1" EDIT="1" SELECT="0" FLOW="1" TRANS="1" BLEND="0" OUTL="0" LAYERC="#000000"/>
|
||||
<Printer firstUse="1" toFile="0" useAltPrintCommand="0" outputSeparations="0" useSpotColors="1" useColor="1" mirrorH="0" mirrorV="0" useICC="0" doGCR="0" doClip="0" setDevParam="0" useDocBleeds="1" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" includePDFMarks="1" PSLevel="3" PrintEngine="3" markLength="20.0016" markOffset="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" printer="Photosmart-C4400-series" filename="" separationName="All" printerCommand=""/>
|
||||
<PDF firstUse="1" Thumbnails="0" Articles="0" Bookmarks="0" Compress="1" CMethod="0" Quality="0" EmbedPDF="0" MirrorH="0" MirrorV="0" Clip="0" rangeSel="0" rangeTxt="" RotateDeg="0" PresentMode="0" RecalcPic="0" FontEmbedding="0" Grayscale="0" RGBMode="1" UseProfiles="0" UseProfiles2="0" Binding="0" PicRes="300" Resolution="300" Version="14" Intent="1" Intent2="0" SolidP="sRGB display profile (ICC v2.2)" ImageP="sRGB display profile (ICC v2.2)" PrintP="ISO Coated v2 300% (basICColor)" InfoString="" BTop="0" BLeft="0" BRight="0" BBottom="0" useDocBleeds="0" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" docInfoMarks="0" markLength="20" markOffset="0" ImagePr="0" PassOwner="" PassUser="" Permissions="-4" Encrypt="0" UseLayers="0" UseLpi="0" UseSpotColors="1" doMultiFile="0" displayBookmarks="0" displayFullscreen="0" displayLayers="0" displayThumbs="0" hideMenuBar="0" hideToolBar="0" fitWindow="0" openAfterExport="0" PageLayout="0" openAction="">
|
||||
<LPI Color="" Frequency="0" Angle="0" SpotFunction="0"/>
|
||||
<LPI Color="Black" Frequency="133" Angle="45" SpotFunction="3"/>
|
||||
<LPI Color="Cyan" Frequency="133" Angle="105" SpotFunction="3"/>
|
||||
<LPI Color="Magenta" Frequency="133" Angle="75" SpotFunction="3"/>
|
||||
<LPI Color="Yellow" Frequency="133" Angle="90" SpotFunction="3"/>
|
||||
</PDF>
|
||||
<DocItemAttributes/>
|
||||
<TablesOfContents/>
|
||||
<NotesStyles>
|
||||
<notesStyle Name="Default" Start="1" Endnotes="0" Type="Type_1_2_3" Range="0" Prefix="" Suffix=")" AutoHeight="1" AutoWidth="1" AutoRemove="1" AutoWeld="1" SuperNote="1" SuperMaster="1" MarksStyle="" NotesStyle=""/>
|
||||
</NotesStyles>
|
||||
<PageSets>
|
||||
<Set Name="Single Page" FirstPage="0" Rows="1" Columns="1"/>
|
||||
<Set Name="Facing Pages" FirstPage="1" Rows="1" Columns="2">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="3-Fold" FirstPage="0" Rows="1" Columns="3">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="4-Fold" FirstPage="0" Rows="1" Columns="4">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle Left"/>
|
||||
<PageNames Name="Middle Right"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
</PageSets>
|
||||
<Sections>
|
||||
<Section Number="0" Name="0" From="0" To="0" Type="Type_1_2_3" Start="1" Reversed="0" Active="1" FillChar="0" FieldWidth="0"/>
|
||||
</Sections>
|
||||
<MASTERPAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="Normal" MNAM="" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="" MNAM="Normal" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGEOBJECT XPOS="386.494928438083" YPOS="716" OwnPage="0" ItemID="1505799837" PTYPE="6" WIDTH="656.010143123833" HEIGHT="656" FRTYPE="1" CLIPEDIT="0" PWIDTH="1" PCOLOR="Black" PLINEART="1" path="M656.01 328 C656.01 509.156 509.164 656 328.005 656 C146.853 656 0 509.156 0 328 C0 146.851 146.853 0 328.005 0 C509.164 0 656.01 146.851 656.01 328 Z" copath="M656.01 328 C656.01 509.156 509.164 656 328.005 656 C146.853 656 0 509.156 0 328 C0 146.851 146.853 0 328.005 0 C509.164 0 656.01 146.851 656.01 328 Z" gXpos="386.494928438083" gYpos="716" gWidth="0" gHeight="0" LAYER="0"/>
|
||||
</DOCUMENT>
|
||||
</SCRIBUSUTF8NEW>
|
||||
7
styles/fonts/notomono/dot_4.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="1229pt" height="2048pt" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" viewBox="0 0 1229 2048" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs/>
|
||||
<g inkscape:label="Background" inkscape:groupmode="layer" id="Background">
|
||||
<path transform="translate(286.495, 696)" style="fill:#171615; fill-rule:evenodd;stroke:none;" d="M656.01 328 C656.01 509.156 509.164 656 328.005 656 C146.853 656 0 509.156 0 328 C0 146.851 146.853 0 328.005 0 C509.164 0 656.01 146.851 656.01 328 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 605 B |
94
styles/fonts/notomono/dot_5.sla
Normal file
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<SCRIBUSUTF8NEW Version="1.5.8">
|
||||
<DOCUMENT ANZPAGES="1" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" PRESET="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" ORIENTATION="0" PAGESIZE="Custom" FIRSTNUM="1" BOOK="0" AUTOSPALTEN="1" ABSTSPALTEN="792" UNITS="0" DFONT="DejaVu Sans Book" DSIZE="12" DCOL="1" DGAP="0" TabFill="" TabWidth="36" TextDistLeft="0" TextDistRight="0" TextDistBottom="0" TextDistTop="0" FirstLineOffset="1" AUTHOR="" COMMENTS="" KEYWORDS="" PUBLISHER="" DOCDATE="" DOCTYPE="" DOCFORMAT="" DOCIDENT="" DOCSOURCE="" DOCLANGINFO="" DOCRELATION="" DOCCOVER="" DOCRIGHTS="" DOCCONTRIB="" TITLE="" SUBJECT="" VHOCH="33" VHOCHSC="66" VTIEF="33" VTIEFSC="66" VKAPIT="75" BASEGRID="14.4" BASEO="0" AUTOL="100" UnderlinePos="-1" UnderlineWidth="-1" StrikeThruPos="-1" StrikeThruWidth="-1" GROUPC="1" HCMS="0" DPSo="0" DPSFo="0" DPuse="0" DPgam="0" DPbla="1" DPPr="ISO Coated v2 300% (basICColor)" DPIn="sRGB display profile (ICC v2.2)" DPInCMYK="ISO Coated v2 300% (basICColor)" DPIn2="sRGB display profile (ICC v2.2)" DPIn3="ISO Coated v2 300% (basICColor)" DISc="1" DIIm="0" ALAYER="0" LANGUAGE="en_US" AUTOMATIC="1" AUTOCHECK="0" GUIDELOCK="0" SnapToGuides="1" SnapToGrid="0" SnapToElement="1" MINGRID="20" MAJGRID="100" SHOWGRID="0" SHOWGUIDES="1" showcolborders="1" SHOWFRAME="1" SHOWControl="0" SHOWLAYERM="0" SHOWMARGIN="1" SHOWBASE="0" SHOWPICT="1" SHOWLINK="0" rulerMode="1" showrulers="1" showBleed="1" rulerXoffset="0" rulerYoffset="0" GuideRad="10" GRAB="4" POLYC="4" POLYF="0.502045814642449" POLYR="0" POLYIR="0" POLYCUR="0" POLYOCUR="0" POLYS="0" arcStartAngle="30" arcSweepAngle="300" spiralStartAngle="0" spiralEndAngle="1080" spiralFactor="1.2" AutoSave="1" AutoSaveTime="600000" AutoSaveCount="1" AutoSaveKeep="0" AUtoSaveInDocDir="1" AutoSaveDir="" ScratchBottom="20" ScratchLeft="100" ScratchRight="100" ScratchTop="20" GapHorizontal="0" GapVertical="40" StartArrow="0" EndArrow="0" PEN="Black" BRUSH="None" PENLINE="Black" PENTEXT="Black" StrokeText="Black" TextBackGround="None" TextLineColor="None" TextBackGroundShade="100" TextLineShade="100" TextPenShade="100" TextStrokeShade="100" STIL="1" STILLINE="1" WIDTH="1" WIDTHLINE="1" PENSHADE="100" LINESHADE="100" BRUSHSHADE="100" CPICT="None" PICTSHADE="100" CSPICT="None" PICTSSHADE="100" PICTSCX="1" PICTSCY="1" PSCALE="0" PASPECT="1" EmbeddedPath="0" HalfRes="1" dispX="10" dispY="10" constrain="15" MINORC="#00ff00" MAJORC="#00ff00" GuideC="#000080" BaseC="#c0c0c0" renderStack="2 0 4 1 3" GridType="0" PAGEC="#ffffff" MARGC="#0000ff" RANDF="0" currentProfile="PDF 1.4" calligraphicPenFillColor="Black" calligraphicPenLineColor="Black" calligraphicPenFillColorShade="100" calligraphicPenLineColorShade="100" calligraphicPenLineWidth="1" calligraphicPenAngle="0" calligraphicPenWidth="10" calligraphicPenStyle="1">
|
||||
<CheckProfile Name="PDF 1.3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.5" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.6" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-1a" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="1" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PostScript" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="0" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<COLOR NAME="Black" SPACE="CMYK" C="0" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Blue" SPACE="RGB" R="0" G="0" B="255"/>
|
||||
<COLOR NAME="Cool Black" SPACE="CMYK" C="60" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Cyan" SPACE="CMYK" C="100" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Green" SPACE="RGB" R="0" G="255" B="0"/>
|
||||
<COLOR NAME="Magenta" SPACE="CMYK" C="0" M="100" Y="0" K="0"/>
|
||||
<COLOR NAME="Red" SPACE="RGB" R="255" G="0" B="0"/>
|
||||
<COLOR NAME="Registration" SPACE="CMYK" C="100" M="100" Y="100" K="100" Register="1"/>
|
||||
<COLOR NAME="Rich Black" SPACE="CMYK" C="60" M="40" Y="40" K="100"/>
|
||||
<COLOR NAME="Warm Black" SPACE="CMYK" C="0" M="60" Y="29.8039215686275" K="100"/>
|
||||
<COLOR NAME="White" SPACE="CMYK" C="0" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Yellow" SPACE="CMYK" C="0" M="0" Y="100" K="0"/>
|
||||
<HYPHEN/>
|
||||
<CHARSTYLE CNAME="Default Character Style" DefaultStyle="1" FONT="DejaVu Sans Book" FONTSIZE="12" FONTFEATURES="" FEATURES="inherit" FCOLOR="Black" FSHADE="100" HyphenWordMin="3" SCOLOR="Black" BGCOLOR="None" BGSHADE="100" SSHADE="100" TXTSHX="5" TXTSHY="-5" TXTOUT="1" TXTULP="-0.1" TXTULW="-0.1" TXTSTP="-0.1" TXTSTW="-0.1" SCALEH="100" SCALEV="100" BASEO="0" KERN="0" LANGUAGE="en_US"/>
|
||||
<STYLE NAME="Default Paragraph Style" DefaultStyle="1" ALIGN="0" DIRECTION="0" LINESPMode="0" LINESP="15" INDENT="0" RMARGIN="0" FIRST="0" VOR="0" NACH="0" ParagraphEffectOffset="0" DROP="0" DROPLIN="2" Bullet="0" Numeration="0" HyphenConsecutiveLines="2" BCOLOR="None" BSHADE="100"/>
|
||||
<TableStyle NAME="Default Table Style" DefaultStyle="1" FillColor="None" FillShade="100">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</TableStyle>
|
||||
<CellStyle NAME="Default Cell Style" DefaultStyle="1" FillColor="None" FillShade="100" LeftPadding="1" RightPadding="1" TopPadding="1" BottomPadding="1">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</CellStyle>
|
||||
<LAYERS NUMMER="0" LEVEL="0" NAME="Background" SICHTBAR="1" DRUCKEN="1" EDIT="1" SELECT="0" FLOW="1" TRANS="1" BLEND="0" OUTL="0" LAYERC="#000000"/>
|
||||
<Printer firstUse="1" toFile="0" useAltPrintCommand="0" outputSeparations="0" useSpotColors="1" useColor="1" mirrorH="0" mirrorV="0" useICC="0" doGCR="0" doClip="0" setDevParam="0" useDocBleeds="1" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" includePDFMarks="1" PSLevel="3" PrintEngine="3" markLength="20.0016" markOffset="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" printer="Photosmart-C4400-series" filename="" separationName="All" printerCommand=""/>
|
||||
<PDF firstUse="1" Thumbnails="0" Articles="0" Bookmarks="0" Compress="1" CMethod="0" Quality="0" EmbedPDF="0" MirrorH="0" MirrorV="0" Clip="0" rangeSel="0" rangeTxt="" RotateDeg="0" PresentMode="0" RecalcPic="0" FontEmbedding="0" Grayscale="0" RGBMode="1" UseProfiles="0" UseProfiles2="0" Binding="0" PicRes="300" Resolution="300" Version="14" Intent="1" Intent2="0" SolidP="sRGB display profile (ICC v2.2)" ImageP="sRGB display profile (ICC v2.2)" PrintP="ISO Coated v2 300% (basICColor)" InfoString="" BTop="0" BLeft="0" BRight="0" BBottom="0" useDocBleeds="0" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" docInfoMarks="0" markLength="20" markOffset="0" ImagePr="0" PassOwner="" PassUser="" Permissions="-4" Encrypt="0" UseLayers="0" UseLpi="0" UseSpotColors="1" doMultiFile="0" displayBookmarks="0" displayFullscreen="0" displayLayers="0" displayThumbs="0" hideMenuBar="0" hideToolBar="0" fitWindow="0" openAfterExport="0" PageLayout="0" openAction="">
|
||||
<LPI Color="" Frequency="0" Angle="0" SpotFunction="0"/>
|
||||
<LPI Color="Black" Frequency="133" Angle="45" SpotFunction="3"/>
|
||||
<LPI Color="Cyan" Frequency="133" Angle="105" SpotFunction="3"/>
|
||||
<LPI Color="Magenta" Frequency="133" Angle="75" SpotFunction="3"/>
|
||||
<LPI Color="Yellow" Frequency="133" Angle="90" SpotFunction="3"/>
|
||||
</PDF>
|
||||
<DocItemAttributes/>
|
||||
<TablesOfContents/>
|
||||
<NotesStyles>
|
||||
<notesStyle Name="Default" Start="1" Endnotes="0" Type="Type_1_2_3" Range="0" Prefix="" Suffix=")" AutoHeight="1" AutoWidth="1" AutoRemove="1" AutoWeld="1" SuperNote="1" SuperMaster="1" MarksStyle="" NotesStyle=""/>
|
||||
</NotesStyles>
|
||||
<PageSets>
|
||||
<Set Name="Single Page" FirstPage="0" Rows="1" Columns="1"/>
|
||||
<Set Name="Facing Pages" FirstPage="1" Rows="1" Columns="2">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="3-Fold" FirstPage="0" Rows="1" Columns="3">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="4-Fold" FirstPage="0" Rows="1" Columns="4">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle Left"/>
|
||||
<PageNames Name="Middle Right"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
</PageSets>
|
||||
<Sections>
|
||||
<Section Number="0" Name="0" From="0" To="0" Type="Type_1_2_3" Start="1" Reversed="0" Active="1" FillChar="0" FieldWidth="0"/>
|
||||
</Sections>
|
||||
<MASTERPAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="Normal" MNAM="" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="" MNAM="Normal" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGEOBJECT XPOS="304.663285625389" YPOS="634" OwnPage="0" ItemID="1807482209" PTYPE="6" WIDTH="819.673428749222" HEIGHT="820" FRTYPE="1" CLIPEDIT="0" PWIDTH="1" PCOLOR="Black" PLINEART="1" path="M819.673 410 C819.673 636.445 636.191 820 409.837 820 C183.49 820 0 636.445 0 410 C0 183.563 183.49 0 409.837 0 C636.191 0 819.673 183.563 819.673 410 Z" copath="M819.673 410 C819.673 636.445 636.191 820 409.837 820 C183.49 820 0 636.445 0 410 C0 183.563 183.49 0 409.837 0 C636.191 0 819.673 183.563 819.673 410 Z" gXpos="304.663285625389" gYpos="634" gWidth="0" gHeight="0" LAYER="0"/>
|
||||
</DOCUMENT>
|
||||
</SCRIBUSUTF8NEW>
|
||||
7
styles/fonts/notomono/dot_5.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1229pt" height="2048pt" viewBox="0 0 1229 2048" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1">
|
||||
<defs/>
|
||||
<g inkscape:label="Background" inkscape:groupmode="layer" id="Background">
|
||||
<path style="fill:#171615; fill-rule:evenodd;stroke:none;" d="M819.673 410 C819.673 636.445 636.191 820 409.837 820 C183.49 820 0 636.445 0 410 C0 183.563 183.49 0 409.837 0 C636.191 0 819.673 183.563 819.673 410 Z" transform="translate(204.663, 614)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 607 B |
94
styles/fonts/notomono/dot_6.sla
Normal file
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<SCRIBUSUTF8NEW Version="1.5.8">
|
||||
<DOCUMENT ANZPAGES="1" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" PRESET="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" ORIENTATION="0" PAGESIZE="Custom" FIRSTNUM="1" BOOK="0" AUTOSPALTEN="1" ABSTSPALTEN="792" UNITS="0" DFONT="DejaVu Sans Book" DSIZE="12" DCOL="1" DGAP="0" TabFill="" TabWidth="36" TextDistLeft="0" TextDistRight="0" TextDistBottom="0" TextDistTop="0" FirstLineOffset="1" AUTHOR="" COMMENTS="" KEYWORDS="" PUBLISHER="" DOCDATE="" DOCTYPE="" DOCFORMAT="" DOCIDENT="" DOCSOURCE="" DOCLANGINFO="" DOCRELATION="" DOCCOVER="" DOCRIGHTS="" DOCCONTRIB="" TITLE="" SUBJECT="" VHOCH="33" VHOCHSC="66" VTIEF="33" VTIEFSC="66" VKAPIT="75" BASEGRID="14.4" BASEO="0" AUTOL="100" UnderlinePos="-1" UnderlineWidth="-1" StrikeThruPos="-1" StrikeThruWidth="-1" GROUPC="1" HCMS="0" DPSo="0" DPSFo="0" DPuse="0" DPgam="0" DPbla="1" DPPr="ISO Coated v2 300% (basICColor)" DPIn="sRGB display profile (ICC v2.2)" DPInCMYK="ISO Coated v2 300% (basICColor)" DPIn2="sRGB display profile (ICC v2.2)" DPIn3="ISO Coated v2 300% (basICColor)" DISc="1" DIIm="0" ALAYER="0" LANGUAGE="en_US" AUTOMATIC="1" AUTOCHECK="0" GUIDELOCK="0" SnapToGuides="1" SnapToGrid="0" SnapToElement="1" MINGRID="20" MAJGRID="100" SHOWGRID="0" SHOWGUIDES="1" showcolborders="1" SHOWFRAME="1" SHOWControl="0" SHOWLAYERM="0" SHOWMARGIN="1" SHOWBASE="0" SHOWPICT="1" SHOWLINK="0" rulerMode="1" showrulers="1" showBleed="1" rulerXoffset="0" rulerYoffset="0" GuideRad="10" GRAB="4" POLYC="4" POLYF="0.502045814642449" POLYR="0" POLYIR="0" POLYCUR="0" POLYOCUR="0" POLYS="0" arcStartAngle="30" arcSweepAngle="300" spiralStartAngle="0" spiralEndAngle="1080" spiralFactor="1.2" AutoSave="1" AutoSaveTime="600000" AutoSaveCount="1" AutoSaveKeep="0" AUtoSaveInDocDir="1" AutoSaveDir="" ScratchBottom="20" ScratchLeft="100" ScratchRight="100" ScratchTop="20" GapHorizontal="0" GapVertical="40" StartArrow="0" EndArrow="0" PEN="Black" BRUSH="None" PENLINE="Black" PENTEXT="Black" StrokeText="Black" TextBackGround="None" TextLineColor="None" TextBackGroundShade="100" TextLineShade="100" TextPenShade="100" TextStrokeShade="100" STIL="1" STILLINE="1" WIDTH="1" WIDTHLINE="1" PENSHADE="100" LINESHADE="100" BRUSHSHADE="100" CPICT="None" PICTSHADE="100" CSPICT="None" PICTSSHADE="100" PICTSCX="1" PICTSCY="1" PSCALE="0" PASPECT="1" EmbeddedPath="0" HalfRes="1" dispX="10" dispY="10" constrain="15" MINORC="#00ff00" MAJORC="#00ff00" GuideC="#000080" BaseC="#c0c0c0" renderStack="2 0 4 1 3" GridType="0" PAGEC="#ffffff" MARGC="#0000ff" RANDF="0" currentProfile="PDF 1.4" calligraphicPenFillColor="Black" calligraphicPenLineColor="Black" calligraphicPenFillColorShade="100" calligraphicPenLineColorShade="100" calligraphicPenLineWidth="1" calligraphicPenAngle="0" calligraphicPenWidth="10" calligraphicPenStyle="1">
|
||||
<CheckProfile Name="PDF 1.3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.5" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.6" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-1a" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="1" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PostScript" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="0" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<COLOR NAME="Black" SPACE="CMYK" C="0" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Blue" SPACE="RGB" R="0" G="0" B="255"/>
|
||||
<COLOR NAME="Cool Black" SPACE="CMYK" C="60" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Cyan" SPACE="CMYK" C="100" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Green" SPACE="RGB" R="0" G="255" B="0"/>
|
||||
<COLOR NAME="Magenta" SPACE="CMYK" C="0" M="100" Y="0" K="0"/>
|
||||
<COLOR NAME="Red" SPACE="RGB" R="255" G="0" B="0"/>
|
||||
<COLOR NAME="Registration" SPACE="CMYK" C="100" M="100" Y="100" K="100" Register="1"/>
|
||||
<COLOR NAME="Rich Black" SPACE="CMYK" C="60" M="40" Y="40" K="100"/>
|
||||
<COLOR NAME="Warm Black" SPACE="CMYK" C="0" M="60" Y="29.8039215686275" K="100"/>
|
||||
<COLOR NAME="White" SPACE="CMYK" C="0" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Yellow" SPACE="CMYK" C="0" M="0" Y="100" K="0"/>
|
||||
<HYPHEN/>
|
||||
<CHARSTYLE CNAME="Default Character Style" DefaultStyle="1" FONT="DejaVu Sans Book" FONTSIZE="12" FONTFEATURES="" FEATURES="inherit" FCOLOR="Black" FSHADE="100" HyphenWordMin="3" SCOLOR="Black" BGCOLOR="None" BGSHADE="100" SSHADE="100" TXTSHX="5" TXTSHY="-5" TXTOUT="1" TXTULP="-0.1" TXTULW="-0.1" TXTSTP="-0.1" TXTSTW="-0.1" SCALEH="100" SCALEV="100" BASEO="0" KERN="0" LANGUAGE="en_US"/>
|
||||
<STYLE NAME="Default Paragraph Style" DefaultStyle="1" ALIGN="0" DIRECTION="0" LINESPMode="0" LINESP="15" INDENT="0" RMARGIN="0" FIRST="0" VOR="0" NACH="0" ParagraphEffectOffset="0" DROP="0" DROPLIN="2" Bullet="0" Numeration="0" HyphenConsecutiveLines="2" BCOLOR="None" BSHADE="100"/>
|
||||
<TableStyle NAME="Default Table Style" DefaultStyle="1" FillColor="None" FillShade="100">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</TableStyle>
|
||||
<CellStyle NAME="Default Cell Style" DefaultStyle="1" FillColor="None" FillShade="100" LeftPadding="1" RightPadding="1" TopPadding="1" BottomPadding="1">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</CellStyle>
|
||||
<LAYERS NUMMER="0" LEVEL="0" NAME="Background" SICHTBAR="1" DRUCKEN="1" EDIT="1" SELECT="0" FLOW="1" TRANS="1" BLEND="0" OUTL="0" LAYERC="#000000"/>
|
||||
<Printer firstUse="1" toFile="0" useAltPrintCommand="0" outputSeparations="0" useSpotColors="1" useColor="1" mirrorH="0" mirrorV="0" useICC="0" doGCR="0" doClip="0" setDevParam="0" useDocBleeds="1" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" includePDFMarks="1" PSLevel="3" PrintEngine="3" markLength="20.0016" markOffset="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" printer="Photosmart-C4400-series" filename="" separationName="All" printerCommand=""/>
|
||||
<PDF firstUse="1" Thumbnails="0" Articles="0" Bookmarks="0" Compress="1" CMethod="0" Quality="0" EmbedPDF="0" MirrorH="0" MirrorV="0" Clip="0" rangeSel="0" rangeTxt="" RotateDeg="0" PresentMode="0" RecalcPic="0" FontEmbedding="0" Grayscale="0" RGBMode="1" UseProfiles="0" UseProfiles2="0" Binding="0" PicRes="300" Resolution="300" Version="14" Intent="1" Intent2="0" SolidP="sRGB display profile (ICC v2.2)" ImageP="sRGB display profile (ICC v2.2)" PrintP="ISO Coated v2 300% (basICColor)" InfoString="" BTop="0" BLeft="0" BRight="0" BBottom="0" useDocBleeds="0" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" docInfoMarks="0" markLength="20" markOffset="0" ImagePr="0" PassOwner="" PassUser="" Permissions="-4" Encrypt="0" UseLayers="0" UseLpi="0" UseSpotColors="1" doMultiFile="0" displayBookmarks="0" displayFullscreen="0" displayLayers="0" displayThumbs="0" hideMenuBar="0" hideToolBar="0" fitWindow="0" openAfterExport="0" PageLayout="0" openAction="">
|
||||
<LPI Color="" Frequency="0" Angle="0" SpotFunction="0"/>
|
||||
<LPI Color="Black" Frequency="133" Angle="45" SpotFunction="3"/>
|
||||
<LPI Color="Cyan" Frequency="133" Angle="105" SpotFunction="3"/>
|
||||
<LPI Color="Magenta" Frequency="133" Angle="75" SpotFunction="3"/>
|
||||
<LPI Color="Yellow" Frequency="133" Angle="90" SpotFunction="3"/>
|
||||
</PDF>
|
||||
<DocItemAttributes/>
|
||||
<TablesOfContents/>
|
||||
<NotesStyles>
|
||||
<notesStyle Name="Default" Start="1" Endnotes="0" Type="Type_1_2_3" Range="0" Prefix="" Suffix=")" AutoHeight="1" AutoWidth="1" AutoRemove="1" AutoWeld="1" SuperNote="1" SuperMaster="1" MarksStyle="" NotesStyle=""/>
|
||||
</NotesStyles>
|
||||
<PageSets>
|
||||
<Set Name="Single Page" FirstPage="0" Rows="1" Columns="1"/>
|
||||
<Set Name="Facing Pages" FirstPage="1" Rows="1" Columns="2">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="3-Fold" FirstPage="0" Rows="1" Columns="3">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="4-Fold" FirstPage="0" Rows="1" Columns="4">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle Left"/>
|
||||
<PageNames Name="Middle Right"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
</PageSets>
|
||||
<Sections>
|
||||
<Section Number="0" Name="0" From="0" To="0" Type="Type_1_2_3" Start="1" Reversed="0" Active="1" FillChar="0" FieldWidth="0"/>
|
||||
</Sections>
|
||||
<MASTERPAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="Normal" MNAM="" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="" MNAM="Normal" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGEOBJECT XPOS="222.331642812694" YPOS="552" OwnPage="0" ItemID="209925362" PTYPE="6" WIDTH="984.336714374611" HEIGHT="984" FRTYPE="1" CLIPEDIT="0" PWIDTH="1" PCOLOR="Black" PLINEART="1" path="M984.337 492 C984.337 763.734 763.995 984 492.168 984 C220.351 984 0 763.734 0 492 C0 220.276 220.351 0 492.168 0 C763.995 0 984.337 220.276 984.337 492 Z" copath="M984.337 492 C984.337 763.734 763.995 984 492.168 984 C220.351 984 0 763.734 0 492 C0 220.276 220.351 0 492.168 0 C763.995 0 984.337 220.276 984.337 492 Z" gXpos="222.331642812694" gYpos="552" gWidth="0" gHeight="0" LAYER="0"/>
|
||||
</DOCUMENT>
|
||||
</SCRIBUSUTF8NEW>
|
||||
7
styles/fonts/notomono/dot_6.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg viewBox="0 0 1229 2048" version="1.1" xmlns="http://www.w3.org/2000/svg" width="1229pt" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:xlink="http://www.w3.org/1999/xlink" height="2048pt">
|
||||
<defs/>
|
||||
<g inkscape:groupmode="layer" inkscape:label="Background" id="Background">
|
||||
<path transform="translate(122.332, 532)" style="fill:#171615; fill-rule:evenodd;stroke:none;" d="M984.337 492 C984.337 763.734 763.995 984 492.168 984 C220.351 984 0 763.734 0 492 C0 220.276 220.351 0 492.168 0 C763.995 0 984.337 220.276 984.337 492 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 609 B |
94
styles/fonts/notomono/dot_7.sla
Normal file
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<SCRIBUSUTF8NEW Version="1.5.8">
|
||||
<DOCUMENT ANZPAGES="1" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" PRESET="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" ORIENTATION="0" PAGESIZE="Custom" FIRSTNUM="1" BOOK="0" AUTOSPALTEN="1" ABSTSPALTEN="792" UNITS="0" DFONT="DejaVu Sans Book" DSIZE="12" DCOL="1" DGAP="0" TabFill="" TabWidth="36" TextDistLeft="0" TextDistRight="0" TextDistBottom="0" TextDistTop="0" FirstLineOffset="1" AUTHOR="" COMMENTS="" KEYWORDS="" PUBLISHER="" DOCDATE="" DOCTYPE="" DOCFORMAT="" DOCIDENT="" DOCSOURCE="" DOCLANGINFO="" DOCRELATION="" DOCCOVER="" DOCRIGHTS="" DOCCONTRIB="" TITLE="" SUBJECT="" VHOCH="33" VHOCHSC="66" VTIEF="33" VTIEFSC="66" VKAPIT="75" BASEGRID="14.4" BASEO="0" AUTOL="100" UnderlinePos="-1" UnderlineWidth="-1" StrikeThruPos="-1" StrikeThruWidth="-1" GROUPC="1" HCMS="0" DPSo="0" DPSFo="0" DPuse="0" DPgam="0" DPbla="1" DPPr="ISO Coated v2 300% (basICColor)" DPIn="sRGB display profile (ICC v2.2)" DPInCMYK="ISO Coated v2 300% (basICColor)" DPIn2="sRGB display profile (ICC v2.2)" DPIn3="ISO Coated v2 300% (basICColor)" DISc="1" DIIm="0" ALAYER="0" LANGUAGE="en_US" AUTOMATIC="1" AUTOCHECK="0" GUIDELOCK="0" SnapToGuides="1" SnapToGrid="0" SnapToElement="1" MINGRID="20" MAJGRID="100" SHOWGRID="0" SHOWGUIDES="1" showcolborders="1" SHOWFRAME="1" SHOWControl="0" SHOWLAYERM="0" SHOWMARGIN="1" SHOWBASE="0" SHOWPICT="1" SHOWLINK="0" rulerMode="1" showrulers="1" showBleed="1" rulerXoffset="0" rulerYoffset="0" GuideRad="10" GRAB="4" POLYC="4" POLYF="0.502045814642449" POLYR="0" POLYIR="0" POLYCUR="0" POLYOCUR="0" POLYS="0" arcStartAngle="30" arcSweepAngle="300" spiralStartAngle="0" spiralEndAngle="1080" spiralFactor="1.2" AutoSave="1" AutoSaveTime="600000" AutoSaveCount="1" AutoSaveKeep="0" AUtoSaveInDocDir="1" AutoSaveDir="" ScratchBottom="20" ScratchLeft="100" ScratchRight="100" ScratchTop="20" GapHorizontal="0" GapVertical="40" StartArrow="0" EndArrow="0" PEN="Black" BRUSH="None" PENLINE="Black" PENTEXT="Black" StrokeText="Black" TextBackGround="None" TextLineColor="None" TextBackGroundShade="100" TextLineShade="100" TextPenShade="100" TextStrokeShade="100" STIL="1" STILLINE="1" WIDTH="1" WIDTHLINE="1" PENSHADE="100" LINESHADE="100" BRUSHSHADE="100" CPICT="None" PICTSHADE="100" CSPICT="None" PICTSSHADE="100" PICTSCX="1" PICTSCY="1" PSCALE="0" PASPECT="1" EmbeddedPath="0" HalfRes="1" dispX="10" dispY="10" constrain="15" MINORC="#00ff00" MAJORC="#00ff00" GuideC="#000080" BaseC="#c0c0c0" renderStack="2 0 4 1 3" GridType="0" PAGEC="#ffffff" MARGC="#0000ff" RANDF="0" currentProfile="PDF 1.4" calligraphicPenFillColor="Black" calligraphicPenLineColor="Black" calligraphicPenFillColorShade="100" calligraphicPenLineColorShade="100" calligraphicPenLineWidth="1" calligraphicPenAngle="0" calligraphicPenWidth="10" calligraphicPenStyle="1">
|
||||
<CheckProfile Name="PDF 1.3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.5" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF 1.6" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-1a" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="1" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-3" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="1" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PDF/X-4" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="0" minResolution="144" maxResolution="2400" checkAnnotations="1" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="1" checkFontNotEmbedded="1" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<CheckProfile Name="PostScript" ignoreErrors="0" autoCheck="1" checkGlyphs="1" checkOrphans="1" checkOverflow="1" checkPictures="1" checkPartFilledImageFrames="0" checkResolution="1" checkTransparency="1" minResolution="144" maxResolution="2400" checkAnnotations="0" checkRasterPDF="1" checkForGIF="1" ignoreOffLayers="0" checkNotCMYKOrSpot="0" checkDeviceColorsAndOutputIntent="0" checkFontNotEmbedded="0" checkFontIsOpenType="0" checkAppliedMasterDifferentSide="1" checkEmptyTextFrames="1"/>
|
||||
<COLOR NAME="Black" SPACE="CMYK" C="0" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Blue" SPACE="RGB" R="0" G="0" B="255"/>
|
||||
<COLOR NAME="Cool Black" SPACE="CMYK" C="60" M="0" Y="0" K="100"/>
|
||||
<COLOR NAME="Cyan" SPACE="CMYK" C="100" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Green" SPACE="RGB" R="0" G="255" B="0"/>
|
||||
<COLOR NAME="Magenta" SPACE="CMYK" C="0" M="100" Y="0" K="0"/>
|
||||
<COLOR NAME="Red" SPACE="RGB" R="255" G="0" B="0"/>
|
||||
<COLOR NAME="Registration" SPACE="CMYK" C="100" M="100" Y="100" K="100" Register="1"/>
|
||||
<COLOR NAME="Rich Black" SPACE="CMYK" C="60" M="40" Y="40" K="100"/>
|
||||
<COLOR NAME="Warm Black" SPACE="CMYK" C="0" M="60" Y="29.8039215686275" K="100"/>
|
||||
<COLOR NAME="White" SPACE="CMYK" C="0" M="0" Y="0" K="0"/>
|
||||
<COLOR NAME="Yellow" SPACE="CMYK" C="0" M="0" Y="100" K="0"/>
|
||||
<HYPHEN/>
|
||||
<CHARSTYLE CNAME="Default Character Style" DefaultStyle="1" FONT="DejaVu Sans Book" FONTSIZE="12" FONTFEATURES="" FEATURES="inherit" FCOLOR="Black" FSHADE="100" HyphenWordMin="3" SCOLOR="Black" BGCOLOR="None" BGSHADE="100" SSHADE="100" TXTSHX="5" TXTSHY="-5" TXTOUT="1" TXTULP="-0.1" TXTULW="-0.1" TXTSTP="-0.1" TXTSTW="-0.1" SCALEH="100" SCALEV="100" BASEO="0" KERN="0" LANGUAGE="en_US"/>
|
||||
<STYLE NAME="Default Paragraph Style" DefaultStyle="1" ALIGN="0" DIRECTION="0" LINESPMode="0" LINESP="15" INDENT="0" RMARGIN="0" FIRST="0" VOR="0" NACH="0" ParagraphEffectOffset="0" DROP="0" DROPLIN="2" Bullet="0" Numeration="0" HyphenConsecutiveLines="2" BCOLOR="None" BSHADE="100"/>
|
||||
<TableStyle NAME="Default Table Style" DefaultStyle="1" FillColor="None" FillShade="100">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</TableStyle>
|
||||
<CellStyle NAME="Default Cell Style" DefaultStyle="1" FillColor="None" FillShade="100" LeftPadding="1" RightPadding="1" TopPadding="1" BottomPadding="1">
|
||||
<TableBorderLeft>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderLeft>
|
||||
<TableBorderRight>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderRight>
|
||||
<TableBorderTop>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderTop>
|
||||
<TableBorderBottom>
|
||||
<TableBorderLine Width="1" PenStyle="1" Color="Black" Shade="100"/>
|
||||
</TableBorderBottom>
|
||||
</CellStyle>
|
||||
<LAYERS NUMMER="0" LEVEL="0" NAME="Background" SICHTBAR="1" DRUCKEN="1" EDIT="1" SELECT="0" FLOW="1" TRANS="1" BLEND="0" OUTL="0" LAYERC="#000000"/>
|
||||
<Printer firstUse="1" toFile="0" useAltPrintCommand="0" outputSeparations="0" useSpotColors="1" useColor="1" mirrorH="0" mirrorV="0" useICC="0" doGCR="0" doClip="0" setDevParam="0" useDocBleeds="1" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" includePDFMarks="1" PSLevel="3" PrintEngine="3" markLength="20.0016" markOffset="0" BleedTop="0" BleedLeft="0" BleedRight="0" BleedBottom="0" printer="Photosmart-C4400-series" filename="" separationName="All" printerCommand=""/>
|
||||
<PDF firstUse="1" Thumbnails="0" Articles="0" Bookmarks="0" Compress="1" CMethod="0" Quality="0" EmbedPDF="0" MirrorH="0" MirrorV="0" Clip="0" rangeSel="0" rangeTxt="" RotateDeg="0" PresentMode="0" RecalcPic="0" FontEmbedding="0" Grayscale="0" RGBMode="1" UseProfiles="0" UseProfiles2="0" Binding="0" PicRes="300" Resolution="300" Version="14" Intent="1" Intent2="0" SolidP="sRGB display profile (ICC v2.2)" ImageP="sRGB display profile (ICC v2.2)" PrintP="ISO Coated v2 300% (basICColor)" InfoString="" BTop="0" BLeft="0" BRight="0" BBottom="0" useDocBleeds="0" cropMarks="0" bleedMarks="0" registrationMarks="0" colorMarks="0" docInfoMarks="0" markLength="20" markOffset="0" ImagePr="0" PassOwner="" PassUser="" Permissions="-4" Encrypt="0" UseLayers="0" UseLpi="0" UseSpotColors="1" doMultiFile="0" displayBookmarks="0" displayFullscreen="0" displayLayers="0" displayThumbs="0" hideMenuBar="0" hideToolBar="0" fitWindow="0" openAfterExport="0" PageLayout="0" openAction="">
|
||||
<LPI Color="" Frequency="0" Angle="0" SpotFunction="0"/>
|
||||
<LPI Color="Black" Frequency="133" Angle="45" SpotFunction="3"/>
|
||||
<LPI Color="Cyan" Frequency="133" Angle="105" SpotFunction="3"/>
|
||||
<LPI Color="Magenta" Frequency="133" Angle="75" SpotFunction="3"/>
|
||||
<LPI Color="Yellow" Frequency="133" Angle="90" SpotFunction="3"/>
|
||||
</PDF>
|
||||
<DocItemAttributes/>
|
||||
<TablesOfContents/>
|
||||
<NotesStyles>
|
||||
<notesStyle Name="Default" Start="1" Endnotes="0" Type="Type_1_2_3" Range="0" Prefix="" Suffix=")" AutoHeight="1" AutoWidth="1" AutoRemove="1" AutoWeld="1" SuperNote="1" SuperMaster="1" MarksStyle="" NotesStyle=""/>
|
||||
</NotesStyles>
|
||||
<PageSets>
|
||||
<Set Name="Single Page" FirstPage="0" Rows="1" Columns="1"/>
|
||||
<Set Name="Facing Pages" FirstPage="1" Rows="1" Columns="2">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="3-Fold" FirstPage="0" Rows="1" Columns="3">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
<Set Name="4-Fold" FirstPage="0" Rows="1" Columns="4">
|
||||
<PageNames Name="Left Page"/>
|
||||
<PageNames Name="Middle Left"/>
|
||||
<PageNames Name="Middle Right"/>
|
||||
<PageNames Name="Right Page"/>
|
||||
</Set>
|
||||
</PageSets>
|
||||
<Sections>
|
||||
<Section Number="0" Name="0" From="0" To="0" Type="Type_1_2_3" Start="1" Reversed="0" Active="1" FillChar="0" FieldWidth="0"/>
|
||||
</Sections>
|
||||
<MASTERPAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="Normal" MNAM="" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGE PAGEXPOS="100" PAGEYPOS="20" PAGEWIDTH="1229" PAGEHEIGHT="2048" BORDERLEFT="40" BORDERRIGHT="40" BORDERTOP="40" BORDERBOTTOM="40" NUM="0" NAM="" MNAM="Normal" Size="Custom" Orientation="0" LEFT="0" PRESET="0" VerticalGuides="" HorizontalGuides="" AGhorizontalAutoGap="0" AGverticalAutoGap="0" AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoRefer="0" AGverticalAutoRefer="0" AGSelection="0 0 0 0" pageEffectDuration="1" pageViewDuration="1" effectType="0" Dm="0" M="0" Di="0"/>
|
||||
<PAGEOBJECT XPOS="140.25" YPOS="469.5" OwnPage="0" ItemID="1881437324" PTYPE="6" WIDTH="1148.5" HEIGHT="1149" FRTYPE="1" CLIPEDIT="0" PWIDTH="1" PCOLOR="Black" PLINEART="1" path="M1148.5 574.5 C1148.5 891.799 891.411 1149 574.25 1149 C257.101 1149 0 891.799 0 574.5 C0 257.212 257.101 0 574.25 0 C891.411 0 1148.5 257.212 1148.5 574.5 Z" copath="M1148.5 574.5 C1148.5 891.799 891.411 1149 574.25 1149 C257.101 1149 0 891.799 0 574.5 C0 257.212 257.101 0 574.25 0 C891.411 0 1148.5 257.212 1148.5 574.5 Z" gXpos="140.25" gYpos="469.5" gWidth="0" gHeight="0" LAYER="0"/>
|
||||
</DOCUMENT>
|
||||
</SCRIBUSUTF8NEW>
|
||||
7
styles/fonts/notomono/dot_7.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="1229pt" viewBox="0 0 1229 2048" xmlns="http://www.w3.org/2000/svg" height="2048pt" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
||||
<defs/>
|
||||
<g inkscape:groupmode="layer" inkscape:label="Background" id="Background">
|
||||
<path style="fill:#171615; fill-rule:evenodd;stroke:none;" transform="translate(40.25, 449.5)" d="M1148.5 574.5 C1148.5 891.799 891.411 1149 574.25 1149 C257.101 1149 0 891.799 0 574.5 C0 257.212 257.101 0 574.25 0 C891.411 0 1148.5 257.212 1148.5 574.5 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 612 B |
69
styles/global.css
Normal file
@@ -0,0 +1,69 @@
|
||||
|
||||
/*
|
||||
DATA-FLEX
|
||||
|
||||
direction width position main axis cross axis
|
||||
|
||||
[/]-horizontal [/]-parent [/]-center [/]-pack [/]-fit
|
||||
[/] vertical [/] content [/] left [/]-wrap [/] stretch
|
||||
[/] right [/] nowrap
|
||||
[/] top [/] grow
|
||||
[/] bottom [/] space
|
||||
[/] spread
|
||||
[/] gap
|
||||
-> for GAP, you can custom the value with 'style="--gap:?px;"'
|
||||
*/
|
||||
[data-flex] {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: auto;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
[data-flex] > * {
|
||||
flex-grow: 0;
|
||||
}
|
||||
/*
|
||||
direction : -horizontal- vertical
|
||||
*/
|
||||
[data-flex~="horizontal"] { flex-direction: row; }
|
||||
[data-flex~="vertical"] { flex-direction: column; }
|
||||
/*
|
||||
width : -parent- content
|
||||
*/
|
||||
[data-flex~="parent"] { width: auto; }
|
||||
[data-flex~="content"] { width: fit-content; }
|
||||
/*
|
||||
position : -center- left right top bottom
|
||||
*/
|
||||
[data-flex~="horizontal"][data-flex~="left"] { justify-content: flex-start; }
|
||||
[data-flex~="horizontal"][data-flex~="right"] { justify-content: flex-end; }
|
||||
[data-flex~="horizontal"][data-flex~="top"] { align-items: flex-start; }
|
||||
[data-flex~="horizontal"][data-flex~="bottom"] { align-items: flex-end; }
|
||||
[data-flex~="horizontal"][data-flex~="center"] { }
|
||||
[data-flex~="vertical"][data-flex~="left"] { align-items: flex-start; }
|
||||
[data-flex~="vertical"][data-flex~="right"] { align-items: flex-end; }
|
||||
[data-flex~="vertical"][data-flex~="top"] { justify-content: flex-start; }
|
||||
[data-flex~="vertical"][data-flex~="bottom"] { justify-content: flex-end; }
|
||||
[data-flex~="vertical"][data-flex~="center"] { align-items: center; }
|
||||
/*
|
||||
main axis : -pack- space spread grow wrap gap
|
||||
*/
|
||||
[data-flex~="horizontal"][data-flex~="pack"] > * { flex-grow: 0; }
|
||||
[data-flex~="horizontal"][data-flex~="space"] { justify-content: space-around; }
|
||||
[data-flex~="horizontal"][data-flex~="spread"] { justify-content: space-between; }
|
||||
[data-flex~="horizontal"][data-flex~="grow"] > * { flex-grow: 1; }
|
||||
[data-flex~="vertical"][data-flex~="pack"] > * { flex-grow: 0; }
|
||||
[data-flex~="vertical"][data-flex~="space"] { justify-content: space-around; }
|
||||
[data-flex~="vertical"][data-flex~="spread"] { justify-content: space-between; }
|
||||
[data-flex~="vertical"][data-flex~="grow"] > * { flex-grow: 1; }
|
||||
[data-flex~="wrap"] { flex-wrap: wrap; }
|
||||
/*
|
||||
cross axis : -fit- stretch
|
||||
*/
|
||||
[data-flex~="horizontal"][data-flex~="fit"],
|
||||
[data-flex~="vertical"][data-flex~="fit"] { }
|
||||
[data-flex~="horizontal"][data-flex~="stretch"],
|
||||
[data-flex~="vertical"][data-flex~="stretch"] { align-items: stretch; }
|
||||
|
||||
|
||||
29
styles/reset.css
Normal file
@@ -0,0 +1,29 @@
|
||||
body * {
|
||||
margin: 0px;
|
||||
}
|
||||
input, button, textarea, select {
|
||||
/* Remove built-in form typography styles */
|
||||
font: inherit;
|
||||
}
|
||||
body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
img, picture, video, canvas, svg {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
}
|
||||
li, p, h1, h2, h3, h4, h5, h6 {
|
||||
/* Avoid text overflows
|
||||
overflow-wrap: break-word;
|
||||
*/
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
/* style details elements */
|
||||
details summary {
|
||||
cursor: pointer;
|
||||
}
|
||||
details summary > * {
|
||||
/* allow to put h1 or anything inside the summary without breaking the line */
|
||||
display: inline;
|
||||
}
|
||||
@@ -1,19 +1,60 @@
|
||||
html {
|
||||
font-size: 62.5%;
|
||||
}
|
||||
:root {
|
||||
--small-space: 10px;
|
||||
--medium-space: calc(var(--small-space) * 3);
|
||||
--big-space: calc(var(--small-space) * 10);
|
||||
--list-padding: 40px;
|
||||
}
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
body * {
|
||||
display: flex;
|
||||
margin: auto;
|
||||
figure {
|
||||
overflow: hidden;
|
||||
}
|
||||
script, style {
|
||||
display: none;
|
||||
}
|
||||
p, pre {
|
||||
line-height: 0.8;
|
||||
font-size: 12px;
|
||||
font-family: monospace;
|
||||
}
|
||||
pre {
|
||||
margin: 10px 0px;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
grid
|
||||
*/
|
||||
|
||||
#personnal_infos { grid-area: infos; }
|
||||
#role_title { grid-area: title; }
|
||||
#cv_infos { grid-area: cv; }
|
||||
#mouse_1 { grid-area: mouse_1; }
|
||||
#mouse_2 { grid-area: mouse_2; }
|
||||
#mouse_3 { grid-area: mouse_3; }
|
||||
#mouse_4 { grid-area: mouse_4; }
|
||||
#banner_1 { grid-area: banner_1;}
|
||||
#banner_2 { grid-area: banner_2;}
|
||||
#banner_3 { grid-area: banner_3;}
|
||||
#banner_4 { grid-area: banner_4;}
|
||||
#banner_5 { grid-area: banner_5;}
|
||||
|
||||
body {
|
||||
/*
|
||||
*/
|
||||
margin: 0px;
|
||||
display: grid;
|
||||
grid:
|
||||
' title ' auto
|
||||
' banner_1 ' auto
|
||||
' mouse_1 ' auto
|
||||
' banner_2 ' auto
|
||||
' cv ' auto
|
||||
' banner_3 ' auto
|
||||
' banner_4 ' auto
|
||||
' mouse_2 ' auto
|
||||
' mouse_3 ' auto
|
||||
' banner_5 ' auto
|
||||
' mouse_4 ' auto
|
||||
' infos ' auto
|
||||
/ 1fr ;
|
||||
}
|
||||
|
||||
43
styles/text.css
Normal file
@@ -0,0 +1,43 @@
|
||||
|
||||
@font-face {
|
||||
font-family: "notomono";
|
||||
src:
|
||||
url("./fonts/notomono/NotoMono-Dot.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
/*
|
||||
*/
|
||||
body, pre {
|
||||
font-family: "notomono", monospace;
|
||||
font-size: 1.5rem;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
ul {
|
||||
/*
|
||||
*/
|
||||
display: block;
|
||||
list-style-type: "• ";
|
||||
padding-left: var(--list-padding);
|
||||
}
|
||||
li {
|
||||
display: list-item;
|
||||
}
|
||||
li::marker {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
a::after {
|
||||
content: attr(href);
|
||||
}
|
||||
h1 { margin: 30px 0px; font-size: 2.25rem; }
|
||||
h2 { margin: 30px 0px; font-size: 2.0rem; }
|
||||
h3 { margin: 20px 0px; font-size: 1.75rem; }
|
||||
h4 { margin: 20px 0px; font-size: 1.5rem; }
|
||||
h5 { margin: 10px 0px; font-size: 1.25rem; }
|
||||
h6 { margin: 10px 0px; font-size: 1.0rem; }
|
||||
pre, .ascii {
|
||||
line-height: 0.8;
|
||||
font-size: min(2.2vw, 1.0rem);
|
||||
white-space: pre;
|
||||
}
|
||||
325
temp.txt
Normal file
@@ -0,0 +1,325 @@
|
||||
|
||||
·•◦●∘⬤
|
||||
|
||||
- 183 : ·
|
||||
- 8226 : •
|
||||
- 8729 : ∙
|
||||
- 9679 : ●
|
||||
- 9899 : ⚫
|
||||
- 11044 : ⬤
|
||||
|
||||
- 57352
|
||||
- 57894
|
||||
- 58140
|
||||
- 58189
|
||||
- 58423
|
||||
- 58470
|
||||
- 58471
|
||||
- 58472
|
||||
- 58736 "Private Use Area"
|
||||
- 58737 "Private Use Area"
|
||||
- 61434 "Private Use Area"
|
||||
- 61713 "Private Use Area"
|
||||
|
||||
- 57442 (0xe062) U+E062 "uniE062" -
|
||||
- 57443 (0xe063) U+E063 "uniE063" -
|
||||
- 57444 (0xe064) U+E064 "uniE064" -
|
||||
- 57445 (0xe065) U+E065 "uniE065" -
|
||||
- 57446 (0xe066) U+E066 "uniE066" -
|
||||
- 57447 (0xe067) U+E067 "uniE067" -
|
||||
|
||||
|
||||
1229 * (1638 + 410)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
•••• •••• ••••• ••••• •••• ••• • • • • ••••• • • ••••
|
||||
• • • • • • • • • • • •• •• •• •• • • • • •
|
||||
•••• •••• • • • •• •••• ••••• • • • • • • •••• • • ••••
|
||||
• • • • • • • • • • • • • • • • • • • •
|
||||
• • • ••••• ••••• • • • • • • • • ••••• ••••• • •
|
||||
|
||||
••••• • • ••••• ••••• •••• • • ••• ••••• ••••• ••• • • •••••
|
||||
• •• • • • • • • •• •• • • • • • • • • •
|
||||
• • • • •••• • • •••• • • • ••••• • • • • • • ••••
|
||||
• • •• • • • • • • • • • • • • • • • • •
|
||||
••••• • • • ••••• • • • • • • • ••••• ••• ••••• •••••
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
•••• •••• ••••• ••••• •••• ••• • • • • ••••• • • •••• ••••• • • ••••• ••••• •••• • • ••• ••••• ••••• ••• • • •••••
|
||||
• • • • • • • • • • • •• •• •• •• • • • • • • •• • • • • • • •• •• • • • • • • • • •
|
||||
•••• •••• • • • •• •••• ••••• • • • • • • •••• • • •••• • • • • •••• • • •••• • • • ••••• • • • • • • ••••
|
||||
• • • • • • • • • • • • • • • • • • • • • • •• • • • • • • • • • • • • • • • • •
|
||||
• • • ••••• ••••• • • • • • • • • ••••• ••••• • • ••••• • • • ••••• • • • • • • • ••••• ••• ••••• •••••
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
•
|
||||
•• ••••• •••••
|
||||
••• • • • • ••
|
||||
•••• • •••• • • • •
|
||||
•• •• • • • • • • • •
|
||||
•• •• • • • ••• •••••
|
||||
•• •• • •• •
|
||||
•• •• • •• •
|
||||
•• ••••••••• • • •
|
||||
•• •• • •••• ••••• •
|
||||
•• •• • • • • • • •
|
||||
•• •• • • • • •• • •
|
||||
•••• • •• •• •• •
|
||||
••• • ••••••• • • •••
|
||||
•• • • •••••
|
||||
•••••••• • • •
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
|
||||
•
|
||||
•
|
||||
•• •
|
||||
• • •••••••
|
||||
• •• • •
|
||||
••••• • • • •
|
||||
• • • • • •
|
||||
• • • •• •
|
||||
• • • •
|
||||
• • ••
|
||||
••• • •
|
||||
• ••••• •
|
||||
• •
|
||||
•• •
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
•••• •
|
||||
• • •
|
||||
• • •
|
||||
• •••
|
||||
•••••
|
||||
• •
|
||||
• •
|
||||
• •
|
||||
••• •••
|
||||
• • • •
|
||||
• • • •
|
||||
•••• ••••
|
||||
• • • • •
|
||||
••• • • •
|
||||
••••••••
|
||||
•
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
•
|
||||
•• •
|
||||
• • •
|
||||
•••••••••
|
||||
• • ••
|
||||
• • •
|
||||
••••• • • •
|
||||
• • •• •
|
||||
• •
|
||||
• • ••
|
||||
• • • •
|
||||
• •• •
|
||||
••• ••••
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
• • • • ••••• ••••• • ••• • • • •
|
||||
• • • • • • • • • • •• •• • •
|
||||
••••• • • • •• • • • ••••• • • • •
|
||||
• • • • • • • • • • • • • •
|
||||
• • ••••• ••••• ••••• ••••• • • • • •
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
••• •••• ••••• •••• ••••• ••••• ••••• • • ••••• ••••• • • • • •
|
||||
• • • • • • • • • • • • • • • • • •• ••
|
||||
••••• •••• • • • •••• •••• • •• ••••• • • ••• • • • •
|
||||
• • • • • • • • • • • • • • • • • • • •
|
||||
• • •••• ••••• •••• ••••• • ••••• • • ••••• •• • • ••••• • •
|
||||
|
||||
• • ••••• •••• ••• •••• ••••• ••••• • • • • • • • • • • •••••
|
||||
•• • • • • • • • • • • • • • • • • • • • • • •
|
||||
• • • • • •••• • • •••• ••••• • • • • • • • • • •
|
||||
• •• • • • • • • • • • • • • • • • • • • • •
|
||||
• • ••••• • •• • • • ••••• • ••••• • • • • • • •••••
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||