diff --git a/solutions/dom_manipulation/1/1.css b/solutions/dom_manipulation/1/1.css new file mode 100644 index 0000000..e15e793 --- /dev/null +++ b/solutions/dom_manipulation/1/1.css @@ -0,0 +1,23 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} +body{ + width: 100vw; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; +} +button{ + width: 7rem; + height: 3rem; + color: #fff; + background-color: red; + border-radius: 30px; + outline: none; + border: none; + cursor: pointer; + font-size: 1.3rem; +} \ No newline at end of file diff --git a/solutions/dom_manipulation/1/1.html b/solutions/dom_manipulation/1/1.html new file mode 100644 index 0000000..32dfc89 --- /dev/null +++ b/solutions/dom_manipulation/1/1.html @@ -0,0 +1,14 @@ + + +
+ + +