The following files exists in this folder. Click to view.
style_p01.css22 lines UTF-8 Windows (CRLF)
body {
display: flex; /* viktig för flex-egenskaperna */
justify-content: center; /* horisontellt */
align-items: center; /* vertikalt */
height: 100vh; /* full höjd på skärmen */
margin: 0;
font-family: Arial, sans-serif;
background: #f5f5f5;
}
h1 {
color: #333;
}
form {
background: #fff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
max-width: 300px;
}