Spaces:
Running
Running
body { | |
font-family: Arial, sans-serif; | |
line-height: 1.6; | |
margin: 0; | |
padding: 0; | |
background-color: #f4f4f4; | |
} | |
.container { | |
max-width: 800px; | |
margin: 20px auto; | |
padding: 20px; | |
background: #fff; | |
border-radius: 8px; | |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |
} | |
h2, h3 { | |
color: #333; | |
text-align: center; | |
} | |
form { | |
display: flex; | |
flex-direction: column; | |
gap: 10px; | |
} | |
label { | |
font-weight: bold; | |
} | |
input[type="file"], textarea { | |
width: 100%; | |
padding: 10px; | |
border: 1px solid #ddd; | |
border-radius: 4px; | |
box-sizing: border-box; | |
} | |
input[type="submit"] { | |
background-color: #007bff; | |
color: #fff; | |
border: none; | |
padding: 10px 20px; | |
font-size: 16px; | |
border-radius: 4px; | |
cursor: pointer; | |
transition: background-color 0.3s ease; | |
} | |
input[type="submit"]:hover { | |
background-color: #0056b3; | |
} | |
ul { | |
list-style-type: none; | |
padding: 0; | |
} | |
li { | |
background: #fff; | |
margin: 10px 0; | |
padding: 15px; | |
border-radius: 4px; | |
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); | |
} | |
.resume-text { | |
font-family: monospace; | |
white-space: pre-wrap; /* Preserve whitespace */ | |
} | |