CoolFace
Apppublic

M-Xeeshan/Project-Tracking

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
style.css49 linesDownload Raw Back to root
1body {2    font-family: Arial, sans-serif;3    background-color: #eef2f3;4    margin: 0;5    padding: 0;6    display: flex;7    justify-content: center;8    align-items: center;9    height: 100vh;10}11 12.container {13    background: #fff;14    padding: 20px;15    border-radius: 8px;16    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);17    max-width: 400px;18    width: 100%;19}20 21h1 {22    text-align: center;23    color: #333;24}25 26form {27    display: flex;28    flex-direction: column;29    gap: 15px;30}31 32label {33    color: #555;34}35 36select, input, button {37    padding: 10px;38    border: 1px solid #ccc;39    border-radius: 4px;40    font-size: 1rem;41}42 43button {44    background-color: #007bff;45    color: #fff;46    border: none;47    cursor: pointer;48}49