Sourceware Lab
+Learn by doing
+diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1795c8d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.history \ No newline at end of file diff --git a/css/index.css b/css/index.css new file mode 100644 index 0000000..2c9a3ce --- /dev/null +++ b/css/index.css @@ -0,0 +1,50 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; + transition: all 0.3s ease; +} + +html{ + --background: #19329e; +} + +body{ + font: inherit; + background: var(--background); +} + +header{ + background: yellow; + display: flex; + width: 100%; + max-height: 15vh; + padding: 10px; +} +.left{ + width: 50%; + display: flex; + align-items: center; + justify-content: flex-start; + gap: 20px; +} + +.left img{ + width: 70px; + border-radius: 50%; +} + +.right{ + width: 50%; + display: flex; + gap: 20px; + align-items: center; + justify-content: flex-end; +} + +.right ul{ + display: contents; + list-style-type: none; +} + + diff --git a/imgs/logo.png b/imgs/logo.png new file mode 100644 index 0000000..f526ede Binary files /dev/null and b/imgs/logo.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..e6961bb --- /dev/null +++ b/index.html @@ -0,0 +1,41 @@ + + +
+ + +Sourceware Lab
+Learn by doing
+