| 12345678910111213141516171819202122232425 |
- @import "shadow";
-
- .actions {
- display: flex;
- justify-content: center;
- flex-wrap: wrap;
- width: 300px;
- margin-top: 20px;
-
- button {
- background: white;
- border: 1px solid black;
- @include shadow();
- margin: 10px;
- padding: 10px 20px;
- text-transform: uppercase;
- width: 100px;
-
- &:active { box-shadow: none; }
- &:focus { outline: none; }
- &:hover { cursor: pointer; }
-
- }
-
- }
|