Browse Source

dczdfzd

master
Cristobal Bernal Mayordomo 1 year ago
parent
commit
ce845f55b7
10 changed files with 122 additions and 13 deletions
  1. +7
    -0
      src/main/resources/static/css/css/Anuncio.css
  2. +31
    -0
      src/main/resources/static/css/css/Bienvenido.css
  3. +26
    -0
      src/main/resources/static/css/css/Recientes.css
  4. +0
    -0
      src/main/resources/static/css/css/inicio.css
  5. BIN
      src/main/resources/static/css/img/images.png
  6. +12
    -0
      src/main/resources/templates/bienvenida/bienvenida.html
  7. +6
    -12
      src/main/resources/templates/header/nav/principal.html
  8. +5
    -1
      src/main/resources/templates/index.html
  9. +13
    -0
      src/main/resources/templates/inicio/inicio.html
  10. +22
    -0
      src/main/resources/templates/recientes/recientes.html

+ 7
- 0
src/main/resources/static/css/css/Anuncio.css View File

@ -0,0 +1,7 @@
section{
background-color: #3071A9;
}
.titulo{
background-color: #3071A9;
text-align: center;
}

+ 31
- 0
src/main/resources/static/css/css/Bienvenido.css View File

@ -0,0 +1,31 @@
* {
margin: 0;
padding: 0;
}
.welcome{
text-align: center;
}
.expliciti{
text-align: center;
}
.welcome-part-one {
background-color: #FF7361;
padding-top: 51px;
padding-bottom: 35px;
}
.welcome-demop102 h2 {
font-size: 25px;
font-weight: bold;
color: #fff;
font-family: "FontAwesome";
}
.welcome-demop102 p {
font-size: 15px;
color: #fff;
font-family: "FontAwesome";
margin-top: 30px;
}
.form-style8292 {
margin-top: 80px;
}

+ 26
- 0
src/main/resources/static/css/css/Recientes.css View File

@ -0,0 +1,26 @@
div#recientes{
float: right;
width: 300px;
height: 500px;
background-color: white;
}
h4{
font-size: x-large
}
i{
font-size: large
}
.status-part3821 {
background-color: #fff;
padding: 15px;
-webkit-box-shadow: 0px 0px 13px -3px;
box-shadow: 0px 0px 13px -3px;
}
.status-part3821 h4 {
color: #FF7361;
font-weight: bold;
font-family: serif;
border-bottom: 2px solid #eaeaeb;
padding-bottom: 10px;
}

+ 0
- 0
src/main/resources/static/css/css/inicio.css View File


BIN
src/main/resources/static/css/img/images.png View File

Before After
Width: 225  |  Height: 225  |  Size: 6.7 KiB

+ 12
- 0
src/main/resources/templates/bienvenida/bienvenida.html View File

@ -3,9 +3,21 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>PaginaBienvenida</title> <title>PaginaBienvenida</title>
<link rel="stylesheet" th:href="@{/css/css/Bienvenido.css}">
</head> </head>
<body> <body>
<nav th:fragment="anuncio"> <nav th:fragment="anuncio">
<section class="welcome-part-one">
<div class="container">
<div class="welcome-demop102 text-center">
<h2 class="welcome">Welcome to Ask me, Awesome Questions & Answer Template</h2>
<p class="expliciti">Duis dapibus aliquam mi, eget euismod sem scelerisque ut. Vivamus at elit quis urna adipiscing iaculis. Curabitur vitae velit in neque dictum blandit. Proin in iaculis neque. Pellentesque
<br> habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Curabitur vitae velit in neque dictum blandit</p>
</div>
</div>
</section>
</nav> </nav>
</body> </body>

+ 6
- 12
src/main/resources/templates/header/nav/principal.html View File

@ -12,23 +12,17 @@
<img src="/css/img/7036beab6be979a346c98c7e2e686aee.png" alt=""> <img src="/css/img/7036beab6be979a346c98c7e2e686aee.png" alt="">
<ul> <ul>
<li><a href="/home">Home</a></li> <li><a href="/home">Home</a></li>
<li><a href="#">Novedades</a>
<ul>
<li><a href="#">SubItem</a></li>
<li><a href="#">SubItem</a></li>
<li><a href="#">SubItem</a></li>
</ul>
</li>
<li><a href="#">Ask Question</a></li>
<li> <li>
<a href="#">Recursos</a>
<a href="#">Question</a>
<ul> <ul>
<li><a href="#">SubItem</a></li>
<li><a href="#">SubItem</a></li>
<li><a href="#">SubItem</a></li>
<li><a href="#">HTML</a></li>
<li><a href="#">CSS</a></li>
<li><a href="#">JavaScript</a></li>
</ul> </ul>
</li> </li>
<li><a href="/entrar">Acceder</a></li> <li><a href="/entrar">Acceder</a></li>
<li><a href="#">Registrarse</a></li>
<li><a href="#">Blog</a></li>
</ul> </ul>
</nav> </nav>


+ 5
- 1
src/main/resources/templates/index.html View File

@ -6,12 +6,16 @@
<link rel="icon" href="/css/img/7036beab6be979a346c98c7e2e686aee.png"> <link rel="icon" href="/css/img/7036beab6be979a346c98c7e2e686aee.png">
<link rel="stylesheet" th:href="@{/css/css/Estilos.css}"> <link rel="stylesheet" th:href="@{/css/css/Estilos.css}">
<link rel="stylesheet" th:href="@{/css/css/Anuncio.css}"> <link rel="stylesheet" th:href="@{/css/css/Anuncio.css}">
<link rel="stylesheet" th:href="@{/css/css/Recientes.css}">
<link rel="stylesheet" th:href="@{/css/css/Bienvenido.css}">
<link rel="stylesheet" th:href="@{/css/css/inicio.css}">
</head> </head>
<body> <body>
<header th:replace="header/nav :: mimenu"></header> <header th:replace="header/nav :: mimenu"></header>
<header th:replace="bienvenida/bienvenida :: anuncio"></header> <header th:replace="bienvenida/bienvenida :: anuncio"></header>
<header th:replace="recientes/recientes :: reciente"></header>
<header th:replace="inicio/inicio :: inicio"></header>
</body> </body>
</html> </html>

+ 13
- 0
src/main/resources/templates/inicio/inicio.html View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" th:href="@{/css/css/inicio.css}">
</head>
<body>
<nav th:fragment="inicio">
</nav>
</body>
</html>

+ 22
- 0
src/main/resources/templates/recientes/recientes.html View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Recientes</title>
<link rel="stylesheet" th:href="@{/css/css/Recientes.css}">
</head>
<body>
<nav th:fragment="reciente">
<div id="recientes">
<div class="status-part3821">
<h4>Stats</h4>
<i > Question(20)</i>
<br>
<br>
<i> Answers(50)</i>
</div>
</div>
</nav>
</body>
</html>

Loading…
Cancel
Save