commit d78964c7957581d7bba9b6ebd860a9e7751eb74b Author: Vitor Gonçalves Date: Tue Jun 13 19:35:08 2023 -0300 feat: initial commit diff --git a/README b/README new file mode 100644 index 0000000..b383214 --- /dev/null +++ b/README @@ -0,0 +1 @@ +this (should) be a cool website diff --git a/bg.jpg b/bg.jpg new file mode 100644 index 0000000..4c0c486 Binary files /dev/null and b/bg.jpg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..7a759a4 --- /dev/null +++ b/index.html @@ -0,0 +1,32 @@ + + + + + ~vitorg - funi + + + +
+

~vitorg

+ +
+ +
+
+

contact info:

+ +
+
+ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..1a348e4 --- /dev/null +++ b/style.css @@ -0,0 +1,30 @@ +:root { + --default-background: #eeccff; +} + +html { + display: inline; + background-image: url("bg.jpg"); + background-position: center top; + background-attachment: scroll; + background-size: cover; +} + +body { + font-family: Inconsolata, monospace; +} + +.block { + background-color: var(--default-background); + text-align: center; + padding: 0.8em; + margin: 1em 20% 1em 20%; + border-style: solid; +} + +.text { + text-align: left; + padding: 0px 20% 0px 20%; +} + +