Project Web 01 Kode Style.css

 body {

    font-family: sans-serif;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 100vh;

    background-color: #f4f4f4;

    margin: 0;

}


.container {

    background-color: white;

    padding: 30px;

    border-radius: 8px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    text-align: center;

    width: 350px;

}


h2 {

    color: #333;

    margin-bottom: 20px;

}


label {

    display: block;

    margin-bottom: 8px;

    color: #555;

    text-align: left;

}


input[type="text"],

input[type="email"],

input[type="password"] {

    width: 100%;

    padding: 10px;

    margin-bottom: 15px;

    border: 1px solid #ccc;

    border-radius: 4px;

    box-sizing: border-box; /* Penting agar padding tidak menambah lebar */

}


button {

    background-color: #5cb85c;

    color: white;

    padding: 10px 15px;

    border: none;

    border-radius: 4px;

    cursor: pointer;

    font-size: 16px;

    width: 100%;

}


button:hover {

    background-color: #4cae4c;

}


a {

    color: #337ab7;

    text-decoration: none;

}


a:hover {

    text-decoration: underline;

}


p {

    margin-top: 20px;

    font-size: 14px;

    color: #666;

}

Komentar

Postingan populer dari blog ini

Project Web 01 Kode Register.php

Project Web 01 Kode Login.php

Project Web 01 Kode Conect.php