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;
|
2025-11-11 22:53:31 +01:00
|
|
|
color: #555;
|
2025-10-29 14:46:01 +01:00
|
|
|
}
|
|
|
|
|
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;
|
2025-11-20 22:19:53 +01:00
|
|
|
/* border-radius: 50%; */
|
2023-03-06 16:54:41 +01:00
|
|
|
}
|
2025-11-12 17:22:30 +01:00
|
|
|
p.foot {
|
|
|
|
|
color: #777;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2023-03-06 16:54:41 +01:00
|
|
|
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-11-20 22:07:00 +01:00
|
|
|
}
|
|
|
|
|
pre.code {
|
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
|
|
|
}
|
2025-11-20 22:07:00 +01:00
|
|
|
pre.code::before {
|
2025-11-17 09:53:30 +01:00
|
|
|
content: "📋 Copy!";
|
|
|
|
|
float: right;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
2023-03-06 16:54:41 +01:00
|
|
|
span.link {
|
|
|
|
|
color: #863600;
|
|
|
|
|
}
|
2025-11-11 22:08:11 +01:00
|
|
|
td.head {
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
padding: 0 2em;
|
|
|
|
|
}
|
|
|
|
|
td.head .top {
|
|
|
|
|
font-size: 250%;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
td.head .bottom {
|
|
|
|
|
font-size: 125%;
|
|
|
|
|
color: #555;
|
|
|
|
|
}
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|