| 1234567891011121314151617181920212223 |
- .trials {
- display: flex;
- justify-content: center;
- margin-top: 20px;
-
- & > div {
- align-items: center;
- background: rgba(0,0,0,0.3);
- border-radius: 5px;
- color: white;
- display: flex;
- padding: 10px 20px;
- }
-
- & span.text {
- font-size: 0.8em;
- letter-spacing: 0.1em;
- margin-left: 10px;
- text-transform: uppercase;
- }
- }
-
|