12345678910111213141516171819202122232425262728293031 |
- .header-e928854 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0.75rem 1rem;
- background-color: #1f2937;
- /* dark gray */
- color: white;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
- background-color: blue;
- }
- .title-e928854 {
- font-size: 1.25rem;
- font-weight: 600;
- }
- .nav-e928854 {
- display: flex;
- gap: 1rem;
- }
- .nav-e928854 a {
- text-decoration: none;
- color: inherit;
- font-size: 0.95rem;
- }
- .nav-e928854 a:hover {
- text-decoration: underline;
- }
|