diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..e61ad55 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "brapifra.phpserver" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 99f2322..926ca3b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,4 @@ { - "window.autoDetectColorScheme": true + "window.autoDetectColorScheme": true, + "workbench.editor.alwaysShowEditorActions": true } \ No newline at end of file diff --git a/index.html b/index.html index e606707..ecf9dbb 100644 --- a/index.html +++ b/index.html @@ -145,6 +145,27 @@ border-radius: 6px; } + .contact-info { + list-style-type: none; + padding: 0; + margin-top: 2rem; + } + + .contact-info li { + margin-bottom: 1rem; + font-size: 1.1rem; + } + + .contact-info a { + color: var(--primary); + text-decoration: none; + transition: color 0.3s; + } + + .contact-info a:hover { + color: var(--secondary); + } + @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; @@ -159,7 +180,7 @@