diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a1d0dba --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,22 @@ +{ + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#65c89b", + "activityBar.activeBorder": "#945bc4", + "activityBar.background": "#65c89b", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#945bc4", + "activityBarBadge.foreground": "#e7e7e7", + "sash.hoverBorder": "#65c89b", + "statusBar.background": "#42b883", + "statusBar.foreground": "#15202b", + "statusBarItem.hoverBackground": "#359268", + "statusBarItem.remoteBackground": "#42b883", + "statusBarItem.remoteForeground": "#15202b", + "titleBar.activeBackground": "#42b883", + "titleBar.activeForeground": "#15202b", + "titleBar.inactiveBackground": "#42b88399", + "titleBar.inactiveForeground": "#15202b99" + }, + "peacock.remoteColor": "#42b883" +} \ No newline at end of file diff --git a/curso-2/clase1.html b/clase1.html similarity index 100% rename from curso-2/clase1.html rename to clase1.html diff --git a/curso-2/clase10.html b/clase10.html similarity index 100% rename from curso-2/clase10.html rename to clase10.html diff --git a/curso-2/clase11.html b/clase11.html similarity index 100% rename from curso-2/clase11.html rename to clase11.html diff --git a/curso-2/clase12.html b/clase12.html similarity index 85% rename from curso-2/clase12.html rename to clase12.html index 3a84f21..3ad5884 100644 --- a/curso-2/clase12.html +++ b/clase12.html @@ -23,13 +23,13 @@ margin: 0; font-family: 'Quicksand', sans-serif; } - .product-detail { + .product-detail-aside { width: 360px; padding-bottom: 24px; position: absolute; right: 0; } - .product-detail-close { + .product-detail-aside-close { background: var(--white); width: 14px; height: 14px; @@ -40,31 +40,31 @@ padding: 12px; border-radius: 50%; } - .product-detail-close:hover { + .product-detail-aside-close:hover { cursor: pointer; } - .product-detail > img:nth-child(2) { + .product-detail-aside > img:nth-child(2) { width: 100%; height: 360px; object-fit: cover; border-radius: 0 0 20px 20px; } - .product-info { + .product-info-aside { margin: 24px 24px 0 24px; } - .product-info p:nth-child(1) { + .product-info-aside p:nth-child(1) { font-weight: bold; font-size: var(--md); margin-top: 0; margin-bottom: 4px; } - .product-info p:nth-child(2) { + .product-info-aside p:nth-child(2) { color: var(--very-light-pink); font-size: var(--md); margin-top: 0; margin-bottom: 36px; } - .product-info p:nth-child(3) { + .product-info-aside p:nth-child(3) { color: var(--very-light-pink); font-size: var(--sm); margin-top: 0; @@ -87,19 +87,19 @@ justify-content: center; } @media (max-width: 640px) { - .product-detail { + .product-detail-aside { width: 100%; } } -