source for lucas.co
Add files via upload
chobits-chii.png | Bin 0 -> 2093311 bytes
contact.html | 26 +++++++++++++
htaccess | 2 +
index.html | 17 ++++++++
items.html | 47 ++++++++++++++++++++++
mystyle.css | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
rin_kokonoe.jpg | Bin 0 -> 29799 bytes
7 files changed, 209 insertions(+)
diff --git a/chobits-chii.png b/chobits-chii.png
new file mode 100644
index 0000000..7c7bc31
Binary files /dev/null and b/chobits-chii.png differ
diff --git a/contact.html b/contact.html
new file mode 100644
index 0000000..c8ed0dd
--- /dev/null
+++ b/contact.html
@@ -0,0 +1,26 @@
+<!doctype html>
+<html lang="en">
+
+<head>
+ <link rel="stylesheet" href="mystyle.css">
+ <title>Synthpu.re/contact</title>
+</head>
+
+<body>
+ <div class="header">
+ Synthpu.re
+ </div>
+
+ <div class="navigation">
+ <a class="there" href="/items.html">Items</a>
+ <a class="here" href="/contact.html">Contact</a>
+ </div>
+
+ <div class = "contact_box">
+ <div>Lucas Galante</div>
+ <p>LSGalante12@gmail.com</p>
+ <p>@_lucasgalante</p>
+ </div>
+</body>
+
+</html>
diff --git a/htaccess b/htaccess
new file mode 100644
index 0000000..031fffe
--- /dev/null
+++ b/htaccess
@@ -0,0 +1,2 @@
+RewriteEngine On
+RewriteRule ^$ /items.html [L]
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..9947fab
--- /dev/null
+++ b/index.html
@@ -0,0 +1,17 @@
+<!doctype html>
+<html lang="en">
+
+<style>
+</style>
+
+<head>
+ <title>synthpure</title>
+<style>
+</style>
+</head>
+
+<body>
+ Not in use.
+</body>
+
+</html>
diff --git a/items.html b/items.html
new file mode 100644
index 0000000..517e702
--- /dev/null
+++ b/items.html
@@ -0,0 +1,47 @@
+<!doctype html>
+<html lang="en">
+
+<head>
+ <link rel="stylesheet" href="mystyle.css">
+ <title>Synthpu.re/items</title>
+</head>
+
+<body>
+ <div class="header">
+ Synthpu.re
+ </div>
+
+ <div class="navigation">
+ <a class="here" href="/items.html">Items</a>
+ <a class="there" href="/contact.html">Contact</a>
+ </div>
+
+ <div class="chocolate_box">
+
+ <div class="panel_title">Chocolate Anime Figures</div>
+
+ <input class="radio" id="one" name="chocolate_figures" type="radio" checked>
+ <input class="radio" id="two" name="chocolate_figures" type="radio">
+
+ <div class="tab_container">
+ <label class="tab" id="tab_one" for="one">Chobits Chii</label>
+ <label class="tab" id="tab_two" for="two">New Figure</label>
+ </div>
+
+ <div class="panels">
+ <div class="panel" id="panel_one">
+ <img class="image" src="chobits-chii.png" height="128" width="128">
+ <div class="description">Chobits Chii is a beautiful girl and you can take a big bite out of her with Chobits Chii Anime Figure Made Out of Chocolate.</div>
+ <div class="price">USD 80</div>
+ </div>
+ <div class="panel" id="panel_two">
+ <img class="image" src="rin_kokonoe.jpg" height="128" width="128">
+ <div class="description">Please bear the extra cost and ask me to make you a new Anime Figure that I have not done before. Whatever character you choose will be added to the lineup of figures you can order for USD 80.</div>
+ <div class="price">USD 200</div>
+ </div>
+ </div>
+ </div>
+
+</body>
+
+</html>
diff --git a/mystyle.css b/mystyle.css
new file mode 100644
index 0000000..2755fd5
--- /dev/null
+++ b/mystyle.css
@@ -0,0 +1,117 @@
+
+
+body {
+ background:white;
+}
+
+.header {
+ padding:20px;
+ text-align:center;
+ margin:auto;
+}
+
+.navigation {
+ text-align:center;
+ padding:0px 0px 20px 0px;
+}
+
+.contact_box {
+ height:100px;
+ width:500px;
+ padding:20px 20px 20px 20px;
+ margin:auto;
+ border:1px solid black;
+}
+
+.chocolate_box {
+ height:250px;
+ width:500px;
+ padding:20px 20px 20px 20px;
+ margin:auto;
+ outline:1px solid black;
+}
+
+.panel_title {
+ margin:0px 0px 20px 0px;
+ outline:1px solid white;
+}
+
+.tab_container {
+ margin:0px 0px 20px 0px;
+ outline:0px solid black;
+}
+
+.tab {
+ display:inline-block;
+ cursor:pointer;
+ padding:2px 8px 2px 8px;
+ margin:0px 2px 0px 0px;
+ outline:1px solid black;
+}
+
+.here:link, a.here:visited {
+ background-color:black;
+ color:white;
+ padding:3px 35px;
+ text-align:center;
+ border:1px solid black;
+ text-decoration:none;
+ display:inline-block;
+}
+
+.there:link {
+ background-color:white;
+ color:black;
+ padding:3px 35px;
+ text-align:center;
+ border:1px solid black;
+ text-decoration:none;
+ display:inline-block;
+}
+
+.panels {
+ border:0px solid black;
+}
+
+.image {
+ display:inline-block;
+ margin:0px 10px 0px 0px;
+ outline:0px solid black;
+}
+
+.description {
+ display:inline-block;
+ width:230px;
+ vertical-align:top;
+ text-align:justify;
+ margin:0px 40px 0px 0px;
+ outline:0px solid black;
+}
+
+.price {
+ display:inline-block;
+ vertical-align:top;
+ margin:0px 0px 0px 0px;
+ outline:0px solid black;
+}
+
+.panel {
+ display:none;
+}
+
+.radio {
+ display:none;
+}
+
+#one:checked ~ .panels #panel_one,
+#two:checked ~ .panels #panel_two,
+#three:checked ~ .panels #panel_three {
+ display:block
+}
+
+#one:checked ~ .tab_container #tab_one,
+#two:checked ~ .tab_container #tab_two,
+#three:checked ~ .tab_container #tab_three {
+ background:black;
+ color:white;
+}
\ No newline at end of file
diff --git a/rin_kokonoe.jpg b/rin_kokonoe.jpg
new file mode 100644
index 0000000..530e5ab
Binary files /dev/null and b/rin_kokonoe.jpg differ