diff --git a/client/css/style.css b/client/css/style.css index fbddfd5..a90c0aa 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -16,7 +16,7 @@ body{ width: 600px; top:50%; left: 50%; - transform: translateY(-65%) translateX(-50%); + transform: translateY(-50%) translateX(-50%); text-align: center; padding: 20px 10px 20px 10px; border-radius: 20px; @@ -47,13 +47,15 @@ body{ } .card{ - padding: 25px 10px 25px 10px; + display: inline-block; font-size: large; font-family: 'Montserrat Regular', sans-serif; border: none; font-weight: 800; - border-radius: 10px; + border-radius: 20px; color: white; + width: 50px; + height: 80px; } .red{ background-color: #FF5555; @@ -72,7 +74,7 @@ body{ } .black{ - background-color: #1a1a1a; + background-image: linear-gradient(to bottom right, red,orange,yellow,green,blue,indigo,violet); } button{ @@ -118,4 +120,29 @@ input:focus { box-shadow: 0 0 0 2px rgba(85, 85, 255, 0.557); border: solid 1px transparent; outline:0; +} + + +#alert-wrapper{ + display: none; + position: fixed; + background-color: rgba(0,0,0,.2); + width: 100%; + height: 100%; + top: 0; + left: 0; +} + +#alert{ + position: fixed; + top: 50%; + left: 50%; + transform: translateX(-50%) translateY(-50%); + background-color: white; + padding: 20px; + border-radius: 20px; + width: 300px; +} +#alert p{ + text-align: justify; } \ No newline at end of file diff --git a/client/index.html b/client/index.html index 857148c..ccb87a1 100644 --- a/client/index.html +++ b/client/index.html @@ -34,7 +34,14 @@