commit 700354a0dba46b4b0fb443822212e584aab48e3c Author: Luquinhas Date: Sat Dec 14 18:20:12 2024 -0300 GitHub pages website first commit diff --git a/header.css b/header.css new file mode 100644 index 0000000..5a309dc --- /dev/null +++ b/header.css @@ -0,0 +1,26 @@ +header { + display: flex; + justify-content: space-between; + align-items: center; + padding: 0 0 30px 0; +} + +.logo { + font-size: 1.5rem; + font-weight: 640; +} + +nav { + display: flex; + gap: 15px; +} + +nav a { + color: #f0f6fc; + text-decoration: none; + font-size: 1rem; +} + +nav a:hover { + text-decoration: underline; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..555c539 --- /dev/null +++ b/index.html @@ -0,0 +1,29 @@ + + + + + + + + + Kowalski Telegram Bot + + +
+ + +
+ + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..1a6c996 --- /dev/null +++ b/style.css @@ -0,0 +1,17 @@ +html { + background-color: #0d1117; + color: #f0f6fc; +} + +body { + margin: 0; + transition: 300ms; + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + padding: 2rem 13rem; +} + +@media (max-width: 1200px) { + body { + padding: 2rem 3rem; + } +} \ No newline at end of file