esoe
1 year ago
31 changed files with 403 additions and 156 deletions
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
{ |
||||
"java.configuration.updateBuildConfiguration": "interactive" |
||||
} |
@ -1,32 +0,0 @@
@@ -1,32 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<parent> |
||||
<groupId>ru.molokoin</groupId> |
||||
<artifactId>home</artifactId> |
||||
<version>1.0-SNAPSHOT</version> |
||||
</parent> |
||||
|
||||
<groupId>ru.molokoin</groupId> |
||||
<artifactId>ear</artifactId> |
||||
<packaging>ear</packaging> |
||||
<name>ear</name> |
||||
|
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<artifactId>maven-ear-plugin</artifactId> |
||||
<configuration> |
||||
<archive> |
||||
<manifest> |
||||
<addClasspath>true</addClasspath> |
||||
</manifest> |
||||
</archive> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
</project> |
@ -1,10 +0,0 @@
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<application xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/application_7.xsd" version="7"> |
||||
<display-name>ear</display-name> |
||||
<module> |
||||
<web> |
||||
<web-uri>ru.molokoin-servlet-1.0-SNAPSHOT.war</web-uri> |
||||
<context-root>/servlet</context-root> |
||||
</web> |
||||
</module> |
||||
</application> |
Binary file not shown.
@ -1,10 +0,0 @@
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<application xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/application_7.xsd" version="7"> |
||||
<display-name>ear</display-name> |
||||
<module> |
||||
<web> |
||||
<web-uri>ru.molokoin-servlet-1.0-SNAPSHOT.war</web-uri> |
||||
<context-root>/servlet</context-root> |
||||
</web> |
||||
</module> |
||||
</application> |
Binary file not shown.
@ -1,16 +0,0 @@
@@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<parent> |
||||
<groupId>ru.molokoin</groupId> |
||||
<artifactId>home</artifactId> |
||||
<version>1.0-SNAPSHOT</version> |
||||
</parent> |
||||
|
||||
<artifactId>servlet</artifactId> |
||||
<packaging>war</packaging> |
||||
<name>servlet</name> |
||||
</project> |
@ -1,5 +0,0 @@
@@ -1,5 +0,0 @@
|
||||
<html> |
||||
<body> |
||||
<h2>Hello World!</h2> |
||||
</body> |
||||
</html> |
@ -1,4 +0,0 @@
@@ -1,4 +0,0 @@
|
||||
#Created by Apache Maven 3.8.5 |
||||
groupId=ru.molokoin |
||||
artifactId=servlet |
||||
version=1.0-SNAPSHOT |
Binary file not shown.
@ -1,5 +0,0 @@
@@ -1,5 +0,0 @@
|
||||
<html> |
||||
<body> |
||||
<h2>Hello World!</h2> |
||||
</body> |
||||
</html> |
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE web-app PUBLIC |
||||
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" |
||||
"http://java.sun.com/dtd/web-app_2_3.dtd" > |
||||
|
||||
<web-app> |
||||
<display-name>molokoin.ru</display-name> |
||||
</web-app> |
@ -0,0 +1,23 @@
@@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="UTF-8"> |
||||
<!-- <meta http-equiv="refresh" content="1; url=home" /> --> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
<title>home</title> |
||||
<link href="layout/styles.css" rel="stylesheet"> |
||||
</head> |
||||
<body> |
||||
<header> |
||||
<h1>molokoin.ru : домашний портал</h1> |
||||
</header> |
||||
<aside> |
||||
<a href="hello">hello</a> |
||||
</aside> |
||||
<main> |
||||
<p >some info</p> |
||||
</main> |
||||
<footer></footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,138 @@
@@ -0,0 +1,138 @@
|
||||
* { |
||||
font-family: "Manrope", arial, sans-serif; |
||||
box-sizing: content-box; |
||||
margin: 0; |
||||
padding: 0; |
||||
} |
||||
|
||||
a{ |
||||
text-decoration: none; |
||||
color: #465df5; |
||||
} |
||||
|
||||
header{ |
||||
/* display: block; */ |
||||
display: flex; |
||||
position: fixed; |
||||
align-self: flex-start; |
||||
/* justify-content: space-between; */ |
||||
justify-content: right; |
||||
width: 100%; |
||||
padding-left: 20%; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
background-color: rgba(25, 25, 25, 0.8); |
||||
z-index: 10; |
||||
height: 7rem; |
||||
/* max-height: 7rem; */ |
||||
} |
||||
|
||||
aside{ |
||||
display: block; |
||||
align-items: center; |
||||
position: fixed; |
||||
color: #fff; |
||||
background-color: rgba(25, 25, 25, 0.8); |
||||
width: 20%; |
||||
height: 700px; |
||||
margin-top: 7rem; |
||||
/* padding: 5px; */ |
||||
} |
||||
aside a{ |
||||
display: block; |
||||
/* display: flex; */ |
||||
/* flex-flow: column; */ |
||||
/* height: 100%; */ |
||||
font-size: x-large; |
||||
background-color: rgba(25, 25, 25, 0.8); |
||||
text-align: center; |
||||
border: 1px solid #000; |
||||
} |
||||
aside a:hover{ |
||||
background-color: rgba(25, 25, 25, 0.9); |
||||
border: 3px solid #fff; |
||||
} |
||||
|
||||
main{ |
||||
display: inline-block; |
||||
/* position: absolute; */ |
||||
/* height: 700px; */ |
||||
width: 80%; |
||||
background-color: rgba(25, 25, 25, 0.2); |
||||
/* padding-left: 10%; */ |
||||
margin-top: 7rem; |
||||
margin-left: 20%; |
||||
} |
||||
div{ |
||||
/* display: block; */ |
||||
margin: 5%; |
||||
} |
||||
|
||||
footer{ |
||||
display: inline-block; |
||||
/* position: relative; */ |
||||
/* height: 700px; */ |
||||
width: 80%; |
||||
background-color: rgba(100, 25, 25, 0.8); |
||||
/* margin-top: 7rem; */ |
||||
margin-left: 20%; |
||||
} |
||||
|
||||
textarea{ |
||||
display: block; |
||||
width: 100%; |
||||
margin-left: auto; |
||||
margin-right: auto; |
||||
} |
||||
embed{ |
||||
display: flex; |
||||
flex-flow: column; |
||||
height: 100%; |
||||
width: 100%; |
||||
/* height: 700px; */ |
||||
} |
||||
|
||||
table { |
||||
display: flex; |
||||
margin-left: 10%; |
||||
margin-right: 10%; |
||||
/* font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif; */ |
||||
/* font-size: 14px; */ |
||||
max-width: 100%; |
||||
width: 80%; |
||||
border-collapse: collapse; |
||||
text-align: left; |
||||
} |
||||
th { |
||||
color: #039; |
||||
padding: 10px 15px; |
||||
} |
||||
td { |
||||
color: #669; |
||||
border-top: 1px solid #e8edff; |
||||
padding: 10px 15px; |
||||
} |
||||
|
||||
tr:hover td { |
||||
background: #e8edff; |
||||
} |
||||
|
||||
label{ |
||||
width: 80%; |
||||
margin-left: 10%; |
||||
} |
||||
select{ |
||||
width: 80%; |
||||
margin-left: 10%; |
||||
} |
||||
input{ |
||||
width: 80%; |
||||
margin-left: 10%; |
||||
} |
||||
button{ |
||||
width: 80%; |
||||
background-color: rgb(36, 2, 69); |
||||
color: #fff; |
||||
border-radius: 0%; |
||||
margin-left: 10%; |
||||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
<!DOCTYPE web-app PUBLIC |
||||
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" |
||||
"http://java.sun.com/dtd/web-app_2_3.dtd" > |
||||
|
||||
<web-app> |
||||
<display-name>molokoin.ru</display-name> |
||||
</web-app> |
@ -0,0 +1,23 @@
@@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="UTF-8"> |
||||
<!-- <meta http-equiv="refresh" content="1; url=home" /> --> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
<title>home</title> |
||||
<link href="layout/styles.css" rel="stylesheet"> |
||||
</head> |
||||
<body> |
||||
<header> |
||||
<h1>molokoin.ru : домашний портал</h1> |
||||
</header> |
||||
<aside> |
||||
<a href="hello">hello</a> |
||||
</aside> |
||||
<main> |
||||
<p >some info</p> |
||||
</main> |
||||
<footer></footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,138 @@
@@ -0,0 +1,138 @@
|
||||
* { |
||||
font-family: "Manrope", arial, sans-serif; |
||||
box-sizing: content-box; |
||||
margin: 0; |
||||
padding: 0; |
||||
} |
||||
|
||||
a{ |
||||
text-decoration: none; |
||||
color: #465df5; |
||||
} |
||||
|
||||
header{ |
||||
/* display: block; */ |
||||
display: flex; |
||||
position: fixed; |
||||
align-self: flex-start; |
||||
/* justify-content: space-between; */ |
||||
justify-content: right; |
||||
width: 100%; |
||||
padding-left: 20%; |
||||
align-items: center; |
||||
justify-content: space-between; |
||||
background-color: rgba(25, 25, 25, 0.8); |
||||
z-index: 10; |
||||
height: 7rem; |
||||
/* max-height: 7rem; */ |
||||
} |
||||
|
||||
aside{ |
||||
display: block; |
||||
align-items: center; |
||||
position: fixed; |
||||
color: #fff; |
||||
background-color: rgba(25, 25, 25, 0.8); |
||||
width: 20%; |
||||
height: 700px; |
||||
margin-top: 7rem; |
||||
/* padding: 5px; */ |
||||
} |
||||
aside a{ |
||||
display: block; |
||||
/* display: flex; */ |
||||
/* flex-flow: column; */ |
||||
/* height: 100%; */ |
||||
font-size: x-large; |
||||
background-color: rgba(25, 25, 25, 0.8); |
||||
text-align: center; |
||||
border: 1px solid #000; |
||||
} |
||||
aside a:hover{ |
||||
background-color: rgba(25, 25, 25, 0.9); |
||||
border: 3px solid #fff; |
||||
} |
||||
|
||||
main{ |
||||
display: inline-block; |
||||
/* position: absolute; */ |
||||
/* height: 700px; */ |
||||
width: 80%; |
||||
background-color: rgba(25, 25, 25, 0.2); |
||||
/* padding-left: 10%; */ |
||||
margin-top: 7rem; |
||||
margin-left: 20%; |
||||
} |
||||
div{ |
||||
/* display: block; */ |
||||
margin: 5%; |
||||
} |
||||
|
||||
footer{ |
||||
display: inline-block; |
||||
/* position: relative; */ |
||||
/* height: 700px; */ |
||||
width: 80%; |
||||
background-color: rgba(100, 25, 25, 0.8); |
||||
/* margin-top: 7rem; */ |
||||
margin-left: 20%; |
||||
} |
||||
|
||||
textarea{ |
||||
display: block; |
||||
width: 100%; |
||||
margin-left: auto; |
||||
margin-right: auto; |
||||
} |
||||
embed{ |
||||
display: flex; |
||||
flex-flow: column; |
||||
height: 100%; |
||||
width: 100%; |
||||
/* height: 700px; */ |
||||
} |
||||
|
||||
table { |
||||
display: flex; |
||||
margin-left: 10%; |
||||
margin-right: 10%; |
||||
/* font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif; */ |
||||
/* font-size: 14px; */ |
||||
max-width: 100%; |
||||
width: 80%; |
||||
border-collapse: collapse; |
||||
text-align: left; |
||||
} |
||||
th { |
||||
color: #039; |
||||
padding: 10px 15px; |
||||
} |
||||
td { |
||||
color: #669; |
||||
border-top: 1px solid #e8edff; |
||||
padding: 10px 15px; |
||||
} |
||||
|
||||
tr:hover td { |
||||
background: #e8edff; |
||||
} |
||||
|
||||
label{ |
||||
width: 80%; |
||||
margin-left: 10%; |
||||
} |
||||
select{ |
||||
width: 80%; |
||||
margin-left: 10%; |
||||
} |
||||
input{ |
||||
width: 80%; |
||||
margin-left: 10%; |
||||
} |
||||
button{ |
||||
width: 80%; |
||||
background-color: rgb(36, 2, 69); |
||||
color: #fff; |
||||
border-radius: 0%; |
||||
margin-left: 10%; |
||||
} |
Loading…
Reference in new issue