aiom
Version:
A Highly Flexible and Modular Framework for Behavioral Experiments
52 lines • 1.11 kB
CSS
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
#redirect_button {
text-align: center;
margin-top: 20px;
}
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
}
button:disabled {
background-color: #ccc; /* Example style for disabled button */
cursor: not-allowed;
}
button:hover {
background-color: #0056b3;
cursor: pointer;
}
.container {
text-align: center;
width: 80%;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
max-height: 90vh;
overflow-y: auto;
}
p {
font-size: medium;
line-height: 1.8;
text-align: left;
}