diff options
author | exprox <wenned@gmail.com> | 2024-01-04 19:48:13 -0300 |
---|---|---|
committer | exprox <wenned@gmail.com> | 2024-01-04 19:48:13 -0300 |
commit | c18603b621b49f6697555a6c698dc94b35453e30 (patch) | |
tree | 55b49434fe582fa4a5daf152711dc2be08eda079 /src | |
parent | 3877dd61b1d5d16cfd6d98e6101c215c85c9d7bf (diff) |
inicio projeto website
Diffstat (limited to 'src')
-rw-r--r-- | src/Index.html | 20 | ||||
-rw-r--r-- | src/light.png | bin | 0 -> 10532 bytes | |||
-rw-r--r-- | src/styles.css | 35 |
3 files changed, 55 insertions, 0 deletions
diff --git a/src/Index.html b/src/Index.html new file mode 100644 index 0000000..b66e0eb --- /dev/null +++ b/src/Index.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="pt-BR"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>ZWLinux</title> + + <link rel="stylesheet" href="styles.css"> + + <link rel="preconnect" href="https://fonts.googleapis.com"> + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> + <link href="https://fonts.googleapis.com/css2?family=Catamaran:wght@100&family=Gruppo&family=Poiret+One&family=Rowdies:wght@300&display=swap" rel="stylesheet"> + +</head> + <body class="conteiner"> + <h1 class="frist">Em Construcao</h1> + <img class="light" src="./light.png" alt=""> + <p class="text-desc">Nosso site está em construção, mas estamos prontos para começar!</p> + </body> +</html>
\ No newline at end of file diff --git a/src/light.png b/src/light.png Binary files differnew file mode 100644 index 0000000..37d5188 --- /dev/null +++ b/src/light.png diff --git a/src/styles.css b/src/styles.css new file mode 100644 index 0000000..f37391f --- /dev/null +++ b/src/styles.css @@ -0,0 +1,35 @@ +*{ + padding: 0; + margin: 0; + border: 0; + font-family: 'Gruppo', sans-serif; +} + +.conteiner{ + position: relative; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height: 100vh; + background: #000000; + color: rgb(255, 255, 255); +} + +.light{ + position: absolute; +} + +.frist{ + text-align: center; + font-size: 4rem; + z-index: 10; +} + +.text-desc{ + margin: 10px; + position: relative; + font-size: 2rem; + top: 12rem; + text-align: justify; +}
\ No newline at end of file |