Sunday, 26 November 2023
Saturday, 25 November 2023
Robot Text Generator
input[type="text"],
input[type="submit"] {
width: 100%;
padding: 10px;
font-size: 16px;
border-radius: 5px;
border: 1px solid #ccc;
}
input[type="submit"] {
background-color: #4caf50;
color: #fff;
cursor: pointer;
transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
background-color: #45a049;
}
.result {
margin-top: 20px;
padding: 10px;
border-radius: 5px;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.result a {
color: #4caf50;
text-decoration: none;
font-weight: bold;
}
@media (max-width: 600px) {
/* Responsive styles for smaller screens */
.container {
padding: 10px;
}
input[type="text"],
input[type="submit"] {
font-size: 14px;
}
}