diff --git a/src/css/style.css b/src/css/style.css index 6ffdb2d..3496c59 100644 --- a/src/css/style.css +++ b/src/css/style.css @@ -64,4 +64,87 @@ .container-login form p a span { color: yellow; +} + +.container-register { + display: flex; + width: 100%; + height: 100dvh; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.container-register h1 { + font-size: 100px; +} + +.container-register form { + text-align: center; + padding: 30px; +} + +.container-register form h2 { + margin-bottom: 20px; + font-size: 30px; + text-transform: capitalize; +} + +.container-register form input { + margin-bottom: 10px; + width: 200px; + height: 30px; + border-radius: 6px; + text-align: center; + background-color: black; + border: 1px solid white; + color: white; +} + +.container-register form input::placeholder { + color: #919191; +} + +.container-register form button { + border-radius: 6px; + width: 200px; + height: 30px; + margin-top: 40px; + font-size: 30px +} + +.container-register form button:hover { + border-radius: 6px; + width: 200px; + height: 30px; + margin-top: 40px; + font-size: 30px; +} + +.container-register form p { + margin-top: 10px; +} + +.container-register form p a { + color: white; + text-decoration: none; +} + +.container-register form p a span { + color: yellow; +} + +.container-board .chara { + display: flex; + flex-direction: column; + justify-content: space-around; + align-items: center; +} + +.container-board .chara .character { + display: flex; + width: 100%; + justify-content: center; + align-items: center; + flex-direction: column; } \ No newline at end of file diff --git a/src/index.php b/src/index.php index 0a2f649..f23e0cf 100644 --- a/src/index.php +++ b/src/index.php @@ -42,6 +42,7 @@ $db->close();