Skip to content

Commit

Permalink
Responsive v1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
AmbrizAlberto committed Apr 3, 2024
1 parent 3e44365 commit 64b12f5
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 3 deletions.
10 changes: 10 additions & 0 deletions app/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -231,3 +231,13 @@ button{
transition: 1000ms;
}

.containeremail {
text-align: center;
margin-top: 50px;
}

.containeremail button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
5 changes: 4 additions & 1 deletion app/css/mainrespons.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
text-align: left;
}
.datos1{
padding-top: 15%;
margin-left: -15%;
width: 100%;
font-size: 200%;
Expand All @@ -96,6 +97,8 @@
font-size: 200%;
}
.lenguajes ul{
margin-left: 15%;
width: 60%;
flex-wrap: wrap;
}
.lenguajes li{
Expand All @@ -116,7 +119,7 @@
font-size: 200%;
}
.projects h2{
margin-left: 5%;
margin-left: 4%;
font-size: 150%;
}
.grid-containerprj{
Expand Down
12 changes: 10 additions & 2 deletions app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ import styles from "./css/main.css"
import style from "./css/mainrespons.css"
import Navbar from './components/navbar';

export default function Portafolio() {

export default function Portafolio() {

return (
<div className='main'>

Expand Down Expand Up @@ -50,6 +51,9 @@ export default function Portafolio() {
<h2>LENGUAJES QUE HE TRABAJADO</h2>

<ul>
<li>
<img src="https://cdn4.iconfinder.com/data/icons/logos-3/504/Swift-2-512.png" alt="" />SWIFT
</li>
<li>
<img src="https://cdn-icons-png.flaticon.com/512/732/732212.png" alt="" />HTML
</li>
Expand Down Expand Up @@ -162,9 +166,13 @@ export default function Portafolio() {
</button>

</div>

<div className="contactme">

</div>



</div>
<script src="https://platform.linkedin.com/badges/js/profile.js" async defer type="text/javascript"></script>
</div>

Expand Down
11 changes: 11 additions & 0 deletions app/script/correoscript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
function copiarCorreo() {
var correo = document.getElementById("correo");
var seleccion = document.createRange();
seleccion.selectNode(correo);
window.getSelection().removeAllRanges();
window.getSelection().addRange(seleccion);
document.execCommand("copy");
window.getSelection().removeAllRanges();
alert("Correo copiado al portapapeles: " + correo.textContent);
}

0 comments on commit 64b12f5

Please sign in to comment.