You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
490 B
Go
39 lines
490 B
Go
package main
|
|
|
|
import (
|
|
//"os"
|
|
)
|
|
|
|
const css = `
|
|
body {
|
|
background-color: #222;
|
|
color: #aaa;
|
|
font-size: 1rem;
|
|
font-family: "Source Sans Pro", 'JetBrains Mono', 'Fira Code', "Segoe UI"
|
|
}
|
|
|
|
.main-title {
|
|
color: teal;
|
|
margin-top: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
margin-left: 8px;
|
|
margin-right: 8px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.server {
|
|
color: darkcyan;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.server:hover {
|
|
text-decoration: underline;
|
|
color: cyan;
|
|
}
|
|
|
|
`
|