study_plan_v2 / static /styles.css
giseldo's picture
Upload styles.css
1de3092 verified
.main-container {
background-color: #f8f9fa;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 10px;
}
.header {
text-align: center;
margin-bottom: 20px;
}
.header h1 {
color: #4a4a4a;
font-weight: bold;
}
.login-container {
max-width: 500px;
margin: 0 auto;
padding: 30px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.input-group {
margin-bottom: 15px;
}
.btn-primary {
background-color: #3498db;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.btn-primary:hover {
background-color: #2980b9;
}
.btn-secondary {
background-color: #95a5a6;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.btn-secondary:hover {
background-color: #7f8c8d;
}
.register-link {
text-align: center;
margin-top: 15px;
}
.user-info {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding: 10px;
background-color: #e8f4fd;
border-radius: 5px;
}
.form-card {
padding: 20px;
background-color: white;
border-radius: 8px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.tab-content {
padding: 20px;
background-color: white;
border-radius: 0 0 8px 8px;
min-height: 400px;
}
/* Hide Gradio footer */
footer {
display: none !important;
}