|
Метки: очистка ручная отмена |
Строка 1: |
Строка 1: |
| .timeline {
| |
| width: 100%;
| |
| margin: 20px 0;
| |
| background-color: transparent;
| |
| }
| |
|
| |
|
| .timeline-entry {
| |
| padding: 10px;
| |
| border-bottom: 1px solid #555;
| |
| background-color: var(--timeline-entry-bg, #333);
| |
| }
| |
|
| |
| .timeline-header {
| |
| font-size: 18px;
| |
| font-weight: bold;
| |
| color: var(--timeline-header-color, #fff);
| |
| cursor: pointer;
| |
| }
| |
|
| |
| .timeline-content {
| |
| padding: 10px;
| |
| font-size: 16px;
| |
| color: var(--timeline-content-color, #ddd);
| |
| background-color: var(--timeline-content-bg, #444);
| |
| display: none;
| |
| }
| |
|
| |
| .timeline-entry:nth-child(even) {
| |
| background-color: var(--timeline-entry-bg-even, #222);
| |
| }
| |
|
| |
| .timeline-entry:hover {
| |
| background-color: var(--timeline-entry-bg-hover, #555);
| |
| }
| |
|
| |
| .timeline-entry a {
| |
| color: var(--timeline-link-color, #ff9800);
| |
| text-decoration: none;
| |
| }
| |
|
| |
| .timeline-entry a:hover {
| |
| text-decoration: underline;
| |
| }
| |