-
Notifications
You must be signed in to change notification settings - Fork 354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pull Request #352
Merged
Merged
Pull Request #352
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
https://github.com/Wannmi | ||
|
||
# Hola, soy Juan Manuel Mascaró Iglesias | ||
|
||
## Te invito a conocer un poco sobre mi: | ||
|
||
### Argentino 💙🤍💙 | ||
|
||
### 👨🎓 Estudio **Ingeniería Electronica** en la UNLP | ||
|
||
### 👨🏫 Soy _ayudante_ alumno ad honorem de la cátedra **Análisis de Circuitos** | ||
|
||
### Te cuento un poco mas: | ||
|
||
🚗 Me apasiona el deporte motor. | ||
|
||
🧰 Reparo o restauro aparatos. | ||
|
||
📱 Me gustaría desarrollar mis ideas. | ||
|
||
🌱 Me gustan las plantas. | ||
|
||
## Sobre la consola: | ||
|
||
### Los comandos que me parecen interesantes son: | ||
|
||
|Comando | Descripción | Acción | | ||
|:------:|:------------------------:|:----------------------------------:| | ||
| pwd | Print Current Directory | Muestra la ruta abs del directorio | | ||
| ls | List Directory Contents | Lista los archivos de la carpeta | | ||
| cd | Change current Directory | Cambia al directorio deseado | | ||
| cd .. | None | Sube un nivel en el directorio | | ||
| mkdir | Make a Directory | Crea una nueva carpeta | | ||
| alias | Alias | Crea un alias replicando un comando| | ||
|
||
|
||
### Algunos alias útiles: | ||
|
||
| Alias | Acción | | ||
|:-------------------------------:|:------------------------------------------:| | ||
| `alias findd="ls ~/ \| grep $1"`|Busca las carpetas que contengan una palabra| | ||
| `alias cl="clear"` | Limpia la pantalla de la terminal | | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,280 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap'); | ||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;600&display=swap'); | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
/*font-family: 'Rubik Mono One', sans-serif;*/ | ||
font-family: 'Inter', sans-serif; | ||
} | ||
|
||
.mainHeader { | ||
/*background-color: #263d36;*/ | ||
background-image: url(../img/bg-image.avif); | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
line-height: 1.2; | ||
padding: 7vw 0; | ||
text-align: center; | ||
} | ||
|
||
h1 { | ||
color: rgb(111, 113, 135); | ||
text-shadow: 3px 5px 7px rgba(0, 0, 0, 0.47); | ||
-webkit-text-stroke: 0.5px rgb(234, 234, 234); | ||
} | ||
|
||
body { | ||
font-family: "Helvetica", "Arial", sans-serif; | ||
margin: 0 auto; | ||
max-width: 45em; | ||
line-height: 1.5; | ||
padding: 3em 1em; | ||
color: #566b78; | ||
/*background-color: #e9e9e9;*/ | ||
background-color: #DCD9D4; | ||
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), radial-gradient(at 50% 0%, rgba(255, 255, 255, 0.10) 0%, rgba(0, 0, 0, 0.50) 50%); | ||
background-blend-mode: soft-light, screen; | ||
|
||
} | ||
|
||
h2 { | ||
margin: 1em 0; | ||
padding-top: 1em; | ||
} | ||
|
||
h3 { | ||
margin: 0.8em 0; | ||
} | ||
|
||
p { | ||
margin: 0.5em; | ||
} | ||
|
||
h2, | ||
strong { | ||
color: #333; | ||
} | ||
|
||
table, | ||
th, | ||
td { | ||
border-collapse: collapse; | ||
border: 2px solid black; | ||
padding: 5px; | ||
} | ||
|
||
td:first-child { | ||
font-weight: 600; | ||
background: #e0e0e0; | ||
border-bottom: 1px solid #d8dee9; | ||
color: #6d6e72; | ||
padding: 10px 5px; | ||
vertical-align: text-bottom; | ||
} | ||
|
||
table { | ||
width: 100%; | ||
text-align: center; | ||
} | ||
|
||
th { | ||
color: crimson; | ||
height: 40px; | ||
background-color: #e0e0e0; | ||
} | ||
|
||
.code { | ||
margin: 1.5em; | ||
font-weight: 600; | ||
background: #e0e0e0; | ||
border-bottom: 1px solid #d8dee9; | ||
color: #6d6e72; | ||
padding: 10px 5px; | ||
vertical-align: text-bottom; | ||
box-shadow: 10px 10px 20px -10px rgb(187, 187, 187); | ||
} | ||
|
||
a { | ||
color: crimson; | ||
text-decoration: none; | ||
} | ||
|
||
/* FORM */ | ||
|
||
.section-form { | ||
padding-top: 10px; | ||
max-width: 45em; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.header-form h2 { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.header-form { | ||
padding: 1em 0; | ||
margin: 0 auto; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.header-form ion-icon { | ||
color: crimson; | ||
font-size: 1.5em; | ||
margin: auto 1em auto 0; | ||
} | ||
|
||
form{ | ||
margin-top: 15px; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
/* ------------------------ */ | ||
|
||
.input-box { | ||
position: relative; | ||
margin: 15px auto 15px; | ||
width: 310px; | ||
border-bottom: 2px solid crimson; | ||
} | ||
|
||
.input-box label { | ||
position: absolute; | ||
top: 50%; | ||
left: 5px; | ||
transform: translateY(-50%); | ||
/*Que hace? */ | ||
font-size: 1em; | ||
pointer-events: none; | ||
/*Que hace?*/ | ||
transition: 0.5s; | ||
} | ||
|
||
input:focus~label, | ||
input:valid~label { | ||
top: -5px; | ||
} | ||
|
||
.input-box input { | ||
width: 100%; | ||
height: 50px; | ||
background: transparent; | ||
border: none; | ||
outline: none; | ||
font-size: 1em; | ||
padding: 0 35px 0 5px; | ||
|
||
} | ||
|
||
.input-box ion-icon { | ||
position: absolute; | ||
right: 10px; | ||
top: 18px; | ||
color: crimson; | ||
font-size: 1.2em; | ||
} | ||
|
||
/* ---------- */ | ||
|
||
fieldset { | ||
margin: 10px; | ||
padding: 0px 18px; | ||
width: 310px; | ||
border: 1px solid crimson; | ||
border-radius: 20px; | ||
} | ||
|
||
fieldset legend { | ||
font-size: 1.2em; | ||
margin-bottom: 10px; | ||
} | ||
|
||
|
||
input[type="radio"]{ | ||
display: none; | ||
} | ||
|
||
label{ | ||
display: block; | ||
cursor: pointer; | ||
margin-bottom: 5px; | ||
} | ||
|
||
fieldset label{ | ||
display: inline-flex; | ||
align-items: center; | ||
padding: 10px 20px 10px 10px; | ||
border-radius: 31px; | ||
transition: .25s ease; | ||
} | ||
|
||
fieldset label:hover, | ||
input[type="radio"]:checked + label{ | ||
background-color: #DCD9D4; | ||
} | ||
|
||
fieldset label:before{ | ||
content: ""; | ||
background-color: #DCD9D4; | ||
width: 20px; | ||
height: 20px; | ||
border-radius: 50%; | ||
margin-right: 10px; | ||
transition: .25s ease; | ||
box-shadow: inset 0 0 0 2px crimson; | ||
} | ||
|
||
input[type="radio"]:checked + label:before{ | ||
box-shadow: inset 0 0 0 6px crimson; | ||
background-color: #DCD9D4; | ||
} | ||
|
||
/* -------------------- */ | ||
|
||
.container-menssage{ | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
.menssageBox{ | ||
margin: 15px; | ||
padding: 0; | ||
width: 350px; | ||
} | ||
|
||
textarea { | ||
width: 100%; | ||
height: 175px; | ||
padding: 12px 20px; | ||
box-sizing: border-box; | ||
border: 1px solid crimson; | ||
border-radius: 20px; | ||
background-color: #DCD9D4; | ||
font-size: 16px; | ||
resize: none; | ||
} | ||
|
||
form button{ | ||
font-size: 1em; | ||
font-weight: 600; | ||
color: #DCD9D4; | ||
background-color: crimson; | ||
height: 35px; | ||
width: 80px; | ||
border: 1px solid crimson; | ||
border-radius: 18px; | ||
} | ||
|
||
form button:hover{ | ||
background-color: #DCD9D4; | ||
color: crimson; | ||
border: 3px solid crimson; | ||
} |
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hola, creo que en este pull request solo iba los archivos index.html, style.css y si querias agregar un archivo contacto.html o lo podias hacer dentro del index.html el formulario. Los archivos de markdown eran de la semana 1. Saludos