2025-10-29 14:31:17 +01:00
|
|
|
/* stylesheet for RouterOS Scripts */
|
2023-03-06 16:54:41 +01:00
|
|
|
body {
|
2025-10-29 14:31:17 +01:00
|
|
|
background-color: transparent;
|
2023-05-25 09:09:15 +02:00
|
|
|
font-family: fira-sans, sans-serif;
|
2023-03-06 16:54:41 +01:00
|
|
|
font-size: 10pt;
|
2025-11-10 11:30:49 +01:00
|
|
|
line-height: 1.6;
|
2023-03-06 16:54:41 +01:00
|
|
|
}
|
2025-10-29 14:46:01 +01:00
|
|
|
h2 {
|
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
blockquote {
|
|
|
|
|
border-left: 4px solid #ccc;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
color: #777;
|
|
|
|
|
}
|
|
|
|
|
code {
|
|
|
|
|
margin: 0 2px;
|
|
|
|
|
padding: 2px 5px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
2023-03-06 16:54:41 +01:00
|
|
|
div.notification {
|
|
|
|
|
position: relative;
|
2025-11-07 12:51:34 +01:00
|
|
|
float: none;
|
2023-03-06 16:54:41 +01:00
|
|
|
width: 600px;
|
|
|
|
|
border: 3px outset #6c5d53;
|
|
|
|
|
/* border-radius: 5px; */
|
|
|
|
|
padding: 10px;
|
|
|
|
|
background-color: #e6e6e6;
|
|
|
|
|
}
|
|
|
|
|
div.content {
|
|
|
|
|
padding-left: 60px;
|
|
|
|
|
}
|
|
|
|
|
img.logo {
|
|
|
|
|
float: left;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
p.heading {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
p.hint {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
pre {
|
2023-05-25 09:09:15 +02:00
|
|
|
font-family: fira-mono, monospace;
|
2023-03-06 16:54:41 +01:00
|
|
|
white-space: pre-wrap;
|
2025-10-29 14:46:01 +01:00
|
|
|
background-color: #f8f8f8;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
pre code {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
2023-03-06 16:54:41 +01:00
|
|
|
}
|
|
|
|
|
span.link {
|
|
|
|
|
color: #863600;
|
|
|
|
|
}
|
2025-11-07 12:51:34 +01:00
|
|
|
@media only screen and (orientation: landscape) {
|
|
|
|
|
body {
|
|
|
|
|
margin-left: 10vw;
|
|
|
|
|
margin-right: 10vw;
|
|
|
|
|
}
|
|
|
|
|
div.notification {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
}
|