mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 08:09:37 +00:00
44 lines
821 B
CSS
44 lines
821 B
CSS
.card {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.wizard > .steps .disabled a,
|
|
.wizard > .steps .disabled a:hover,
|
|
.wizard > .steps .disabled a:active
|
|
{
|
|
background-color: #aaa;
|
|
color: #aaa;
|
|
cursor: default;
|
|
}
|
|
|
|
.wizard > .steps .current a,
|
|
.wizard > .steps .current a:hover,
|
|
.wizard > .steps .current a:active
|
|
{
|
|
background-color: #17a2b8;
|
|
color: #fff;
|
|
cursor: default;
|
|
}
|
|
|
|
.wizard > .steps .done a,
|
|
.wizard > .steps .done a:hover,
|
|
.wizard > .steps .done a:active
|
|
{
|
|
background-color: #17a2b8;
|
|
color: #fff;
|
|
}
|
|
|
|
.wizard > .actions a,
|
|
.wizard > .actions a:hover,
|
|
.wizard > .actions a:active
|
|
{
|
|
background-color: #17a2b8;
|
|
color: #fff;
|
|
display: block;
|
|
padding: 0.5em 1em;
|
|
text-decoration: none;
|
|
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
} |