2024-03-06 21:52:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--md-primary-fg-color: #765bfa;
|
|
|
|
--md-accent-fg-color: #AEA1F1;
|
|
|
|
}
|
2024-06-18 09:29:32 +03:00
|
|
|
|
|
|
|
.md-nav--primary {
|
|
|
|
.md-nav__link {
|
|
|
|
font-size: 18px; /* Change the font size as per your preference */
|
|
|
|
}
|
2024-03-06 21:52:11 +02:00
|
|
|
}
|
|
|
|
|
2024-07-18 09:55:57 +03:00
|
|
|
.md-nav--primary {
|
|
|
|
position: relative; /* Ensure the element is positioned */
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-nav--primary::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2024-07-18 11:05:43 +03:00
|
|
|
right: 10px; /* Move the border 10 pixels to the right */
|
2024-07-18 09:55:57 +03:00
|
|
|
width: 2px;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #f5f5f5; /* Match the border color */
|
|
|
|
}
|
2024-06-18 09:29:32 +03:00
|
|
|
/*.md-nav__title, .md-nav__link {*/
|
|
|
|
/* font-size: 18px;*/
|
|
|
|
/* margin-top: 14px; !* Adjust the space as needed *!*/
|
|
|
|
/* margin-bottom: 14px; !* Adjust the space as needed *!*/
|
|
|
|
/*}*/
|
|
|
|
|
2024-03-06 21:52:11 +02:00
|
|
|
.md-tabs__link {
|
2024-06-18 09:29:32 +03:00
|
|
|
font-size: 18px;
|
2024-03-06 21:52:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.md-header__title {
|
2024-06-18 09:29:32 +03:00
|
|
|
font-size: 20px;
|
2024-03-15 12:04:07 +01:00
|
|
|
margin-left: 0px !important;
|
2024-03-06 21:52:11 +02:00
|
|
|
}
|
2024-03-26 23:00:57 +02:00
|
|
|
|
|
|
|
.md-content img {
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: black;
|
2024-03-27 13:00:16 +02:00
|
|
|
outline-width: 1px;
|
2024-03-26 23:00:57 +02:00
|
|
|
outline-style: solid;
|
|
|
|
outline-color: darkgray;
|
2024-03-27 13:00:16 +02:00
|
|
|
}
|