Skip to content

Commit b54a165

Browse files
v1.0.3 Release
0 parents  commit b54a165

File tree

127 files changed

+27046
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+27046
-0
lines changed

README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# SOCKET-MANAGER Document
2+
### <a href="https://socket-manager.github.io/document/reference/index.html" target="_blank">>> Reference</a>
3+
4+
## MAIN-MENU
5+
6+
### <a href="https://socket-manager.github.io/document/" target="_blank">▶フレームワークのご紹介</a>
7+
8+
### <a href="https://socket-manager.github.io/document/websocket.html" target="_blank">▶Websocket開発環境</a>
9+
10+
### <a href="https://socket-manager.github.io/document/new-project.html" target="_blank">▶新規プロジェクト開発環境</a>
11+
12+
### <a href="https://socket-manager.github.io/document/laravel.html" target="_blank">▶Laravelと連携する</a>
13+
14+
### <a href="https://socket-manager.github.io/document/architecture.html" target="_blank">▶アーキテクチャ</a>
15+
16+
### <a href="https://socket-manager.github.io/document/multi-server.html" target="_blank">▶マルチサーバーの構成</a>
17+
18+
## EXTRA-MENU
19+
20+
### <a href="https://socket-manager.github.io/document/extra-demo.html" target="_blank">▶デモサーバーの種類</a>
21+
22+
### <a href="https://socket-manager.github.io/document/extra-demo-command.html" target="_blank">▶デモのコマンド仕様</a>
23+
24+
### <a href="https://socket-manager.github.io/document/extra-minecraft.html" target="_blank">▶マインクラフトの通信仕様</a>
25+
26+
### <a href="https://socket-manager.github.io/document/extra-close-frame.html" target="_blank">▶切断フレームの検証</a>
27+
28+
## Repositories
29+
30+
### <a href="https://github.com/socket-manager/library/" target="_blank">>> library</a>
31+
> SOCKET-MANAGER Frameworkのライブラリ
32+
33+
### <a href="https://github.com/socket-manager/demo-project/" target="_blank">>> demo-project</a>
34+
> マインクラフトと連携できるWebsocketサーバーのデモ環境
35+
36+
### <a href="https://github.com/socket-manager/websocket-project/" target="_blank">>> websocket-project</a>
37+
> Websocketサーバーの開発環境
38+
39+
### <a href="https://github.com/socket-manager/new-project/" target="_blank">>> new-project</a>
40+
> 新規プロジェクト開発環境
41+
42+
## Contact Us
43+
44+
バグ報告やご要望などは<a href="mailto:lib.tech.engineer@gmail.com">`こちら`</a>から受け付けております。

architecture.html

Lines changed: 312 additions & 0 deletions
Large diffs are not rendered by default.

css/common.css

Lines changed: 309 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,309 @@
1+
@charset "utf-8";
2+
3+
body
4+
{
5+
background-color:ivory;
6+
color: #000333;
7+
text-align: left;
8+
padding: 50px 100px 50px 100px;
9+
}
10+
11+
/* div.layout {
12+
display: flex;
13+
flex-direction: row;
14+
} */
15+
16+
/* 本文エリアのDIV */
17+
div.main {
18+
/* width: 1050px; */
19+
margin: 30px 30px 30px 270px;
20+
}
21+
22+
/* メニューエリアのDIV */
23+
div.menu {
24+
background-color: beige;
25+
width: 300px;
26+
margin: 24px 30px 30px 30px;
27+
padding: 20px;
28+
position: fixed;
29+
top: 0px;
30+
left: 0px;
31+
32+
height: 90%;
33+
overflow-y: auto;
34+
}
35+
/* スクロールバー領域のサイズ */
36+
div.menu::-webkit-scrollbar{
37+
width: 14px; /* 縦スクロール時の幅 */
38+
}
39+
/* スクロールバーの可動域 */
40+
div.menu::-webkit-scrollbar-track{
41+
background-color:whitesmoke;
42+
border-radius: 3px;
43+
}
44+
/* スクロールバー本体 */
45+
div.menu::-webkit-scrollbar-thumb{
46+
border: 0px solid darkgray;
47+
background-color:lightgrey;
48+
border-radius: 3px;
49+
}
50+
51+
/* タイトル */
52+
h1
53+
{
54+
text-align: center;
55+
}
56+
57+
/* サブタイトル(下線付き) */
58+
h2.subtitle
59+
{
60+
margin-top: 50px;
61+
border-bottom: 1px solid #000;
62+
}
63+
64+
/* 左メニューのタイトル */
65+
h2.menu-title
66+
{
67+
text-align: left;
68+
margin-bottom: 0px;
69+
}
70+
71+
/* リファレンス */
72+
h4.menu-reference
73+
{
74+
margin-top: 0px;
75+
}
76+
77+
/* 左メニューのラベル */
78+
h2.menu-label
79+
{
80+
margin-top: 62px;
81+
border-bottom: 1px solid #000;
82+
}
83+
84+
/* 左メニューのページタイトル */
85+
h3.menu-page-title
86+
{
87+
text-decoration: none;
88+
background-color:lightgrey;
89+
padding: 3px 5px;
90+
border-radius: 6px;
91+
}
92+
93+
/* 左メニューのページタイトルリンク */
94+
.menu-page-title-link a
95+
{
96+
text-decoration: none;
97+
color:#777;
98+
}
99+
.menu-page-title-link a:visited
100+
{
101+
color:#777;
102+
}
103+
.menu-page-title-link a:hover
104+
{
105+
background-color:lightgrey;
106+
font-weight: bold;
107+
color:#333;
108+
padding: 3px 5px;
109+
border-radius: 6px;
110+
}
111+
112+
/* 本文エリアの下線付き */
113+
h3.underline
114+
{
115+
border-bottom: 1px dashed gray;
116+
}
117+
118+
/* 左メニューのページ項目 */
119+
li a
120+
{
121+
font-weight: bold;
122+
color:#777;
123+
text-decoration: none;
124+
}
125+
li a:visited
126+
{
127+
font-weight: bold;
128+
color:#777;
129+
}
130+
li a:hover
131+
{
132+
background-color:lightgrey;
133+
font-weight: bold;
134+
color:#333;
135+
padding: 3px 5px;
136+
border-radius: 6px;
137+
}
138+
139+
/* 左メニューの仕切り線 */
140+
hr
141+
{
142+
border-color:black;
143+
border-width: 1px 0 0 0;
144+
}
145+
146+
/* 左メニュー切り替えタイトル */
147+
.menu-change
148+
{
149+
border-top: 0px solid #000;
150+
}
151+
152+
/* テキストを取り囲むDIVブロック */
153+
.text-block
154+
{
155+
text-align: left;
156+
}
157+
158+
/* テキストを取り囲むDIVブロック */
159+
.text-block-img-description
160+
{
161+
margin: auto;
162+
width: 1000px;
163+
}
164+
165+
/* 画像を取り囲むDIVブロック */
166+
.img-block
167+
{
168+
margin-top: 50px;
169+
margin-bottom: 50px;
170+
text-align: center;
171+
}
172+
173+
/* 画像サイズ */
174+
.img-zoomout
175+
{
176+
width: 1000px;
177+
}
178+
179+
/* プログラム */
180+
pre
181+
{
182+
background-color: #000;
183+
color: beige;
184+
padding: 50px 20px 20px 20px;
185+
font-size: large;
186+
letter-spacing: 1px;
187+
}
188+
189+
/* ファイル名ラベル */
190+
span
191+
{
192+
background-color: brown;
193+
color: #fff;
194+
display: inline-block;
195+
font-size: .88em;
196+
padding: 4px 8px 2px 8px;
197+
transform: translateY(43px);
198+
}
199+
200+
/* プログラムワード */
201+
code
202+
{
203+
background-color:lightgrey;
204+
color:#333;
205+
padding: 0px 5px 1px 5px;
206+
/* font-weight:bold;
207+
font-size: large; */
208+
font-family:system-ui;
209+
}
210+
211+
dt
212+
{
213+
font-weight: bold;
214+
}
215+
216+
/* 引用文 */
217+
blockquote
218+
{
219+
color: gray;
220+
margin-left: 0px;
221+
margin-right: 0px;
222+
padding: 5px 10px;
223+
/* padding-left: 10px; */
224+
border-left: 5px solid lightgray;
225+
}
226+
227+
font.pre-yellow
228+
{
229+
color: yellow;
230+
}
231+
font.pre-type
232+
{
233+
color: steelblue;
234+
}
235+
font.pre-green
236+
{
237+
color: green;
238+
}
239+
font.pre-user-type
240+
{
241+
color: limegreen;
242+
}
243+
font.pre-pink
244+
{
245+
color: palevioletred;
246+
}
247+
font.pre-grey
248+
{
249+
color: grey;
250+
}
251+
font.pre-blue
252+
{
253+
color: blue;
254+
}
255+
font.pre-red
256+
{
257+
color: red;
258+
}
259+
260+
/* 文中リンク */
261+
font a
262+
{
263+
background-color:pink;
264+
color:#666;
265+
border-radius: 6px;
266+
text-decoration: none;
267+
}
268+
font a:visited
269+
{
270+
background-color:pink;
271+
color:#666;
272+
border-radius: 6px;
273+
}
274+
font a:hover
275+
{
276+
background-color:pink;
277+
color:#333;
278+
border-radius: 6px;
279+
padding: 3px 5px;
280+
font-weight: bold;
281+
}
282+
283+
/* 文中リンク(アルファベット、記号) */
284+
font.code a
285+
{
286+
background-color:pink;
287+
color:#666;
288+
border-radius: 6px;
289+
padding: 0px 5px 1px 5px;
290+
font-family:system-ui;
291+
text-decoration: none;
292+
}
293+
font.code a:visited
294+
{
295+
background-color:pink;
296+
color:#666;
297+
border-radius: 6px;
298+
padding: 0px 5px 1px 5px;
299+
font-family:system-ui;
300+
}
301+
font.code a:hover
302+
{
303+
background-color:pink;
304+
color:#333;
305+
border-radius: 6px;
306+
padding: 3px 5px;
307+
font-family:system-ui;
308+
font-weight: bold;
309+
}

0 commit comments

Comments
 (0)