Initial commit
This commit is contained in:
@@ -0,0 +1,98 @@
|
||||
.contact {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
width: 1200px;
|
||||
height: 600px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
.info {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
width: 500px;
|
||||
height: 600px;
|
||||
padding-left: 30px;
|
||||
background-color: #191919;
|
||||
}
|
||||
|
||||
.info h1 {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.info span {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.info img {
|
||||
position: absolute;
|
||||
display: block;
|
||||
height: 70px;
|
||||
width: auto;
|
||||
margin-top: 40px;
|
||||
top: 77%;
|
||||
}
|
||||
|
||||
|
||||
.email {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
width: 700px;
|
||||
height: 600px;
|
||||
left: 500px;
|
||||
background-color: #292929;
|
||||
padding: 50px;
|
||||
}
|
||||
|
||||
.email * { display: block; }
|
||||
|
||||
.email span {
|
||||
font-size: 30px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.email input, textarea {
|
||||
background: none;
|
||||
border: 2px solid #3498db;
|
||||
border-radius: 10px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.email #user {
|
||||
margin-top: 20px;
|
||||
width: 300px;
|
||||
height: 30px;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.email #email {
|
||||
margin-top: 20px;
|
||||
width: 400px;
|
||||
height: 30px;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.email #message {
|
||||
margin-top: 20px;
|
||||
width: 600px;
|
||||
height: 300px;
|
||||
font-size: 15px;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.email #submit {
|
||||
margin-top: 20px;
|
||||
width: 100px;
|
||||
height: 50px;
|
||||
font-size: 18px;
|
||||
transition: 200ms;
|
||||
}
|
||||
|
||||
.email #submit:hover {
|
||||
background-color: #3498db;
|
||||
cursor: pointer;
|
||||
}
|
||||
36
Java/WebServer/target/test-classes/assets/src/css/index.css
Normal file
36
Java/WebServer/target/test-classes/assets/src/css/index.css
Normal file
@@ -0,0 +1,36 @@
|
||||
h1 {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translate(-50%, 0);
|
||||
font-size: 80px;
|
||||
font-weight: bold;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.button {
|
||||
position: relative;
|
||||
width: 400px;
|
||||
height: 70px;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
margin-left: 50%;
|
||||
transform: translate(-50%, 0);
|
||||
background: none;
|
||||
border: 2px solid #2ecc71;
|
||||
border-radius: 35px;
|
||||
cursor: pointer;
|
||||
color: inherit;
|
||||
transition-duration: 250ms;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: #2ecc71;
|
||||
}
|
||||
13
Java/WebServer/target/test-classes/assets/src/css/load.css
Normal file
13
Java/WebServer/target/test-classes/assets/src/css/load.css
Normal file
@@ -0,0 +1,13 @@
|
||||
main {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
iframe {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: none;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: calc(100% - 50px);
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
#title {
|
||||
text-align: center;
|
||||
font-size: 70px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.packets {
|
||||
display: flex;
|
||||
position: absolute;
|
||||
width: 1600px;
|
||||
height: 600px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.packet {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 500px;
|
||||
height: 550px;
|
||||
background-color: #191919;
|
||||
border: 3px solid #292929;
|
||||
border-radius: 20px;
|
||||
margin: 25px;
|
||||
}
|
||||
|
||||
.packet h1 {
|
||||
text-align: center;
|
||||
transform: translate(0, -50%);
|
||||
font-size: 42px;
|
||||
}
|
||||
|
||||
.specs-container {
|
||||
position: absolute;
|
||||
width: 370px;
|
||||
left: 50%;
|
||||
top: 25%;
|
||||
transform: translate(-50%, 0);
|
||||
}
|
||||
|
||||
.spec {
|
||||
width: 400px;
|
||||
height: 25px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.spec-img {
|
||||
width: auto;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.spec-info {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
margin-left: 10px;
|
||||
bottom: 25%;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.packet input {
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 230px;
|
||||
height: 60px;
|
||||
border: 2px solid #2ecc71;
|
||||
border-radius: 30px;
|
||||
font-size: 30px;
|
||||
transition: 200ms;
|
||||
background: none;
|
||||
color: white;
|
||||
|
||||
left: 50%;
|
||||
top: 100%;
|
||||
transform: translate(-50%, -150%);
|
||||
}
|
||||
|
||||
.packet input:hover {
|
||||
cursor: pointer;
|
||||
background-color: #2ecc71;
|
||||
}
|
||||
91
Java/WebServer/target/test-classes/assets/src/css/styles.css
Normal file
91
Java/WebServer/target/test-classes/assets/src/css/styles.css
Normal file
@@ -0,0 +1,91 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400&display=swap');
|
||||
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
background-color: #34495e;
|
||||
color: white;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
a {
|
||||
color: dodgerblue;
|
||||
}
|
||||
|
||||
.select {
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
/* === Header === */
|
||||
|
||||
.navigation {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
background-color: #3498db;
|
||||
}
|
||||
|
||||
.navigation img {
|
||||
position: relative;
|
||||
width: auto;
|
||||
height: 40px;
|
||||
top: 5px;
|
||||
left: 10px;
|
||||
}
|
||||
|
||||
.navigation nav {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
left: 100%;
|
||||
transform: translate(-200%, -50%);
|
||||
}
|
||||
|
||||
.navigation a {
|
||||
position: relative;
|
||||
color: white;
|
||||
font-size: 15px;
|
||||
margin: 5px;
|
||||
text-decoration: none;
|
||||
transition: 200ms;
|
||||
}
|
||||
|
||||
.navigation a:hover {
|
||||
cursor: pointer;
|
||||
color: #2ecc71;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* === Main === */
|
||||
|
||||
main {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 50px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* === Alert === */
|
||||
.swal2-popup {
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
BIN
Java/WebServer/target/test-classes/assets/src/img/white.png
Normal file
BIN
Java/WebServer/target/test-classes/assets/src/img/white.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 6.7 KiB |
Reference in New Issue
Block a user