24 lines
461 B
CSS
24 lines
461 B
CSS
.wizard-button {
|
|
display: block;
|
|
border: 1px solid rgb(163, 163, 163);
|
|
border-radius: 5px;
|
|
width: 200px;
|
|
height: 300px;
|
|
float: left;
|
|
margin-right: 30px;
|
|
cursor: pointer;
|
|
padding: 25px 20px;
|
|
box-shadow: 0 3px 10px -2px rgb(161 170 166 / 60%);
|
|
}
|
|
|
|
.wizard-button:hover {
|
|
box-shadow: 0 3px 10px -2px rgb(161 170 166 / 80%);
|
|
border: 1px solid #3ca4ff;
|
|
color: #337ab7;
|
|
}
|
|
|
|
a.link {
|
|
color: var(--text-body-color);
|
|
text-decoration: none;
|
|
}
|