Skip to content

Commit

Permalink
Merge pull request #53 from CodeSystem2022/David
Browse files Browse the repository at this point in the history
Base de datos, clases de 1 a 8
  • Loading branch information
David-Esteche authored Oct 14, 2023
2 parents 7f37fbf + c610076 commit fe2310f
Show file tree
Hide file tree
Showing 18 changed files with 215 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Base de Datos/Sass/proyecto-s/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@


body{
background-color: rgb(241, 208, 115);
margin: 0;
padding: 0;
}

nav{
width: 100%;
height: 100px;
}

main{
background-color: rgb(90, 89, 28);
}

footer{
background: rgb(199, 116, 20);
width: 100%;
height: 250px;
}
Empty file.
19 changes: 19 additions & 0 deletions Base de Datos/Sass/proyecto-s/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="stylesheet" href="./css/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;700&display=swap" rel="stylesheet">

<title>Document</title>
</head>
<body>
<nav class="navbar"> </nav>
<main class="main-section"></main>
<footer class="footer"></footer>
</body>
</html>
25 changes: 25 additions & 0 deletions Base de Datos/Sass/proyecto-s/scss/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
$primary-color: rgb(90, 89, 28);
$secundary-color: rgb(224, 124, 31);
$tertiary-color: rgb(226, 226, 154);
$font-stack: 'Gabarito', sans-serif;

body{
background-color: rgb(241, 208, 115);
margin: 0;
padding: 0;
}

nav{
background-color: $primary-color;
}

main{
background-color: $primary-color;
}

footer{
$background: rgb(199, 116, 20);
background-color: $background;
width: 100%;
height: 250px;
}
Binary file not shown.
Binary file not shown.
Binary file added Base de Datos/Tp entregados/Tp 3.pdf
Binary file not shown.
Binary file added Base de Datos/Tp entregados/VSC css 1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Base de Datos/Tp entregados/VSC css 2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Base de Datos/Tp entregados/VSC html.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Base de Datos/Tp entregados/tp3.1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Base de Datos/Tp entregados/tp3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Base de Datos/Tp entregados/web.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions Base de Datos/html y css/Html, Css/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" type="text/css" rel="stylesheet" media="">
<title>Document</title>
</head>
<body>
<h1 id="title">Javadabadev's</h1>
<dvi id="chat">Chat</dvi>
<aside id="der">
<h1>Ingreso</h1>
<form>
<input type="text" placeholder="usuario">
<input type="password" placeholder="contraseña">
<input type="email" placeholder="email">
<input type="submit" value="Enviar">
</form>
</aside>
<section>
<aside id="izq">
<ul>
<li>
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</li>
</ul>
</aside>
</section>
<nav>
<ul>
<a href="#"><li class="botones">Boton 1</li></a>
<a href="#"><li class="botones">Boton 2</li></a>
<a href="#"><li class="botones">Boton 3</li></a>
<a href="#"><li class="botones">Boton 4</li></a>
<a href="#"><li class="botones">Boton 5</li></a>
</ul>

</nav>
</body>
</html>
66 changes: 66 additions & 0 deletions Base de Datos/html y css/Html, Css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
aside#der{
position: absolute;
right: 0;
top: 0;
width: 200px;
height: 300px;
}
aside#der h1{
width: 200px;
height: 50px;
line-height: 50px;
text-align: center;
background: rgba(100, 0, 255, 1);
color: white;
margin-bottom: 5px;
}
aside#der input{
padding: 10px;
margin: 5px, 0;
width: 176px;
}
aside#der input[type="submit"]{
width: 200px;
background: rgba(100, 0, 100, .5);
border: 0;
}
a.botones :hover{
background: rgba(100, 0, 255, .4);
}

a.botones :active{
background: rgba(255, 0, 100, 1);
}
#chat{
position: fixed;
width: 256px;
height: 40px;
bottom: 0;
background: magenta;
right: 20px;
z-index: 0;
color: white;
text-align: center;
line-height: 40px;
font-family: "kausha scrip" , cursive;
font-size: 20px;
border-radius: 20px 20px, 0.0;
cursor: pointer;
}
aside#izq ul li a{
text-decoration: none;
}

#title {

padding: 10px;
margin: 5px, 0;
width: 176px;
text-align: center;
font-family: "kausha scrip" , cursive;
width: 256px;
height: 40px;
background: rgba(128, 17, 118, 0.514);
border-radius: 20px 20px, 0.0;
color: white;
}
16 changes: 16 additions & 0 deletions Base de Datos/html y css/Página web/columnas.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/columnas.css">
<title>Document</title>
</head>
<body>
<div class="contenedor">
<div class="fila">
<div class="col-12"></div>
</div>
</div>
</body>
</html>
23 changes: 23 additions & 0 deletions Base de Datos/html y css/Página web/css/columnas.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
* {
margin: 0px;
padding: 0px;
list-style: none;
text-decoration: none;
font-family: sans-serif;
}



.contenedor{
position: relative;
margin: auto;
width: 100%;
height: auto;
}

.fila{
position: relative;
margin: auto;
width: 100%;
height: auto;
}
1 change: 1 addition & 0 deletions Base de Datos/html y css/Página web/diagrama.uxf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<diagram program="umletino" version="15.1"><zoom_level>10</zoom_level></diagram>

0 comments on commit fe2310f

Please sign in to comment.