diff --git a/.gitignore b/.gitignore index e69de29..3c3629e 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/base.css b/base.css new file mode 100644 index 0000000..85d919d --- /dev/null +++ b/base.css @@ -0,0 +1,39 @@ +body { + padding: 8px; +} + +.box { + border: 4px solid #28e; + border-radius: 4px; + padding: 8px; +} + +.vertical-stack { + display: flex; + flex-direction: column; + flex-wrap: nowrap; +} + +.vertical-stack > * { + margin-bottom: 8px; +} + +.vertical-stack > *:last-child { + margin-bottom: 0; +} + +.action-button { + border: 0.5px solid #558; + background: hsl(228, 100%, 90%); + background: linear-gradient(150deg, hsl(228, 100%, 95%) 0%, hsl(228, 100%, 80%) 100%); +} + +.footer { + text-align: center; + font-size: small; + font-family: "Dosis", sans-serif; + font-optical-sizing: auto; + font-weight: 600; + font-style: normal; +} + diff --git a/index.html b/index.html new file mode 100644 index 0000000..31a7b0e --- /dev/null +++ b/index.html @@ -0,0 +1,28 @@ + + +
+