Bläddra i källkod

Añadiendo la versión 1 de la página web

Okynos 9 år sedan
förälder
incheckning
2e786c8b0d
4 ändrade filer med 70 tillägg och 23 borttagningar
  1. 5 2
      README.md
  2. 46 16
      css/style.css
  3. BIN
      img/mac-on-a-table.jpg
  4. 19 5
      index.html

+ 5 - 2
README.md

@@ -1,3 +1,6 @@
-# makefileWeb
+# Makefile Web
+#### José Luis Fernández Aguilera
 
-Repositorio para crear la página principal de makefile.es
+Repositorio para crear la página principal de makefile.es, se basa en la utilización
+de técnicas estándares de HTML y CSS para crear una página de inicio sencilla,
+bonita y atractiva.

+ 46 - 16
css/style.css

@@ -1,39 +1,69 @@
+*{
+    margin: auto;
+}
 
 .top-menu{
   border-bottom: 2px solid;
   border-color: rgb(125, 125, 125);
+  width: 100%;
 }
 
 .top-menu-button-div{
-  background-color: rgb(83, 231, 147);
-  margin: 1% 50%;
-  //padding: 1%;
+  background-color: rgb(89, 205, 18);
+  margin: 0.2%;
+  padding: 0.5%;
   border-radius: 5px;
   text-align: center;
-  line-height: 100px;
-  width: 100px;
-  height: 100px;
+  width: 10%;
   float: right;
-}
-
-.top-menu-button{
+  overflow: hidden;
+  font-size: 1em;
+  font-family: 'Helvetica Neue', Helvetica;
+  white-space: nowrap;
   text-decoration: none;
   text-shadow: 1px 1px rgb(143, 143, 143);
   color: rgb(255, 255, 255);
-  display: block;
 }
 
-.top-menu-button:hover{
+.top-menu-button-div:hover{
   color: rgb(0, 0, 0);
 }
 
 #top-menu-div-buttons{
-  display: block;
-  width: 100px;
-  background-color: rgb(235, 48, 43);
+  width: 79%;
+  display: inline-block;
+  vertical-align: bottom;
 }
 
-#top-text-logo{
-  display: block;
+#top-menu-h1-div{
+  vertical-align: bottom;
+  display: inline-block;
   width: 20%;
+  margin-left: 0.5%;
+}
+
+#top-github-icon{
+  width: 2em;
+  float: right;
+  margin-right: 0.5%;
+}
+
+#top-github-icon:hover{
+  fill: red;
+}
+
+#middle-name-web-developer{
+  font-family: Lucida Console;
+  width: 100%;
+  margin-top: 3%;
+  text-align: center;
+}
+
+#img-onboard{
+  width: 100%;
+  height: 500px;
+  background-image: url("../img/mac-on-a-table.jpg");
+  background-repeat: no-repeat;
+  background-attachment: fixed;
+  background-size: cover;
 }

BIN
img/mac-on-a-table.jpg


+ 19 - 5
index.html

@@ -1,18 +1,32 @@
-<!DOCTYPE html>
+<!doctype html>
 <html>
   <head>
     <link rel="stylesheet" type="text/css" href="css/style.css">
+     <meta charset="UTF-8">
   </head>
   <body>
     <header>
       <div class="top-menu">
-        <h1 id="top-text-logo">Makefile.es</h1>
+        <div id="top-menu-h1-div"><h1 id="top-text-logo">Makefile</h1></div>
         <div id="top-menu-div-buttons">
-          <div class="top-menu-button-div"><a class="top-menu-button" href="https://makefile.es:3000">Gogs</a></div>
-          <div class="top-menu-button-div"><a class="top-menu-button" href="https://makefile.es:3000">Syncthing</a></div>
-          <div class="top-menu-button-div"><a class="top-menu-button" href="https://makefile.es:3000">Pydio</a></div>
+          <a href="https://makefile.es:3000"><div
+            class="top-menu-button-div">Gogs</div></a>
+          <a href="https://makefile.es:3000"><div
+            class="top-menu-button-div">Syncthing</div></a>
+          <a href="https://okynos.us.to:1026/pydio"><div
+            class="top-menu-button-div">Pydio</div></a>
+          <a href="https://github.com/okynos">
+            <img id="top-github-icon" src="img/github-icon.svg"/ alt="okynos github page"></a>
         </div>
       </div>
     </header>
+
+    <div id="middle-name-web-developer">
+      <h2 >José Luis Fernández Aguilera</h2>
+      <h3>Ingeniero informático</h3>
+    </div>
+    <div id="img-onboard">
+
+    </div>
   </body>
 </html>