diff --git a/css/app.css b/css/app.css new file mode 100644 index 0000000..881fd1a --- /dev/null +++ b/css/app.css @@ -0,0 +1,53 @@ +body { + font-family: Arial, sans-serif; +} + +.rod { + float: right; + width: 50px; + height: 300px; + border: 1px solid black; + background-color: lightblue; + padding: 0; + + display: flex; + flex-direction: column; + justify-content: flex-end; + + position: relative; +} + +.hook { + background-color: sandybrown; + width: 100%; + height: 50px; + margin: 0; +} + +.pull { + background-color: cornflowerblue; + width: 250px; + height: 250px; + border-radius: 15px; + border: 5px solid darkblue; + + display: flex; + align-content: space-around; + justify-content: space-around; + align-items: center; + + font-size: 4.7em; + user-select: none; + color: white; +} + +.pull:active { + background-color: #a4bbe5; + margin-top: 3px; +} + +.fish { + width: 50px; + position: absolute; + z-index: 10; +} diff --git a/index.html b/index.html index 44b5658..7bf7e9f 100644 --- a/index.html +++ b/index.html @@ -4,147 +4,25 @@