CIE_11 / style.css
JairoCesar's picture
Create style.css
c07a889 verified
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f0f2f5;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.container {
background-color: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 800px;
width: 90%;
}
.banner-image {
width: 150px;
margin-bottom: 1rem;
}
h1 {
color: #333;
font-size: 1.8rem;
margin-bottom: 2rem;
}
.search-container {
text-align: left;
margin-bottom: 2rem;
}
.ctw-input {
width: 100%;
padding: 12px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
}
.ctw-window {
margin-top: 8px;
border: 1px solid #ddd;
border-radius: 4px;
}
.footer {
margin-top: 2rem;
font-size: 0.9rem;
color: #888;
}