Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Favourez authored Jun 15, 2024
1 parent 2189d1a commit 1b712b4
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions applyjobs.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f2f5;
color: #333;
}

.container {
max-width: 500px;
margin: 50px auto;
padding: 20px;
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}

.logo {
max-width: 100px;
margin-bottom: 20px;
}

h1 {
margin: 0 0 20px;
font-size: 2em;
font-weight: bold;
color: #007bff;
}

form {
display: flex;
flex-direction: column;
}

label {
font-size: 1em;
margin-bottom: 5px;
color: #007bff;
text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
input[type="submit"] {
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1em;
width: 100%;
box-sizing: border-box;
}

input[type="submit"] {
background-color: #007bff;
color: #fff;
border: none;
cursor: pointer;
transition: background-color 0.3s, transform 0.3s;
}

input[type="submit"]:hover {
background-color: #0056b3;
transform: scale(1.05);
}

0 comments on commit 1b712b4

Please sign in to comment.