diff --git a/.theia/index.html b/.theia/index.html new file mode 100644 index 0000000..5ebc8cd --- /dev/null +++ b/.theia/index.html @@ -0,0 +1,22 @@ + + + + Заголовок страницы + + + + + + +
+
+
+
+
+ + +
+
+ + diff --git a/.theia/launch.json b/.theia/launch.json new file mode 100644 index 0000000..10edae7 --- /dev/null +++ b/.theia/launch.json @@ -0,0 +1,35 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + "version": "0.2.0", + "configurations": [ + { + "type": "java", + "name": "Debug (Launch)", + "request": "launch", + "cwd": "${workspaceFolder}", + "console": "internalConsole", + "stopOnEntry": false, + "mainClass": "", + "args": "" + }, + { + "type": "java", + "name": "Debug (Launch)-HelloWorld", + "request": "launch", + "cwd": "${workspaceFolder}", + "console": "internalConsole", + "stopOnEntry": false, + "mainClass": "HelloWorld", + "args": "", + "projectName": "HelloWorld" + }, + { + "type": "java", + "name": "Debug (Attach)", + "request": "attach", + "hostName": "localhost", + "port": "" + } + ] +} diff --git a/.theia/maintest.css b/.theia/maintest.css new file mode 100644 index 0000000..e98ea1a --- /dev/null +++ b/.theia/maintest.css @@ -0,0 +1,22 @@ +/* звездочка означает, что стиль применяется ко всем html элементам */ +* {margin: 0; padding: 0;} +/* для html, body устанавливаем ширину, высоту и цвет заднего фона */ +html, body {width: 100%; height: 100%; background-color: #f0f0f0; } + +#form_A { + /* Абсолютное позиционирование - будем перемещать его сами */ + position: absolute; + /* Перемещаем направо и вниз на половину экрана */ + left: 50%; top: 50%; + /* Выставляем ширину и высоту блока */ + width: 300px; height: 150px; + /* Перемещаем налево на половину ширину, и вверх - на половину высоту */ + margin-left: -150px; margin-top: -75px; + /* Устанавливаем цвет заднего фона в серый */ + background-color: #ccc; + + /* Устанавливаем бордюры */ + border-left: 2px solid #999; border-top: 2px solid #999; + border-right: 2px solid #333; border-bottom: 2px solid #333; + /* Благодаря ним добиваемся 3D эффекта объемности */ +} diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..0f5edf9 --- /dev/null +++ b/src/index.html @@ -0,0 +1,22 @@ + + + + Заголовок страницы + + + + + + +
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/test.html b/test.html new file mode 100644 index 0000000..897c83c --- /dev/null +++ b/test.html @@ -0,0 +1,22 @@ + + + + Заголовок страницы + + + + + + +
+
+
+
+
+ + +
+
+ +