28 lines
539 B
CSS
28 lines
539 B
CSS
.test-page {
|
|
background: linear-gradient(to bottom right, rgb(248, 250, 252), rgb(241, 245, 249));
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.test-card {
|
|
background: white;
|
|
border: 1px solid rgb(229, 231, 235);
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.test-button {
|
|
background: rgb(24, 24, 27);
|
|
color: white;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 0.375rem;
|
|
font-weight: 500;
|
|
font-size: 0.875rem;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.test-button:hover {
|
|
background: rgb(38, 38, 42);
|
|
}
|