2022-11-12 14:50:18 +01:00
|
|
|
:root {
|
|
|
|
--bg-color: #aaa;
|
|
|
|
--text-color: black;
|
|
|
|
--other-background: #444;
|
2022-11-17 06:43:43 +01:00
|
|
|
/* --accent-color: ; */
|
2022-11-12 14:50:18 +01:00
|
|
|
}
|
|
|
|
|
2022-11-11 20:17:37 +01:00
|
|
|
body {
|
2022-11-12 14:50:18 +01:00
|
|
|
margin: 0;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
background-color: var(--bg-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
background-color: var(--other-background);
|
|
|
|
height: 50px;
|
|
|
|
}
|
2022-11-17 06:43:43 +01:00
|
|
|
a {
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
|
2022-11-12 14:50:18 +01:00
|
|
|
.content {
|
|
|
|
width: 100%;
|
|
|
|
height: calc(100% - 55px);
|
2022-11-17 06:43:43 +01:00
|
|
|
margin: auto;
|
2022-11-21 19:41:28 +01:00
|
|
|
padding-bottom: 50px;
|
2022-11-17 06:43:43 +01:00
|
|
|
}
|
|
|
|
.content>* {
|
|
|
|
padding: 5%;
|
2022-11-12 14:50:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-11-17 06:43:43 +01:00
|
|
|
.flex-row {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2022-11-12 14:50:18 +01:00
|
|
|
|
|
|
|
.flex>* {
|
|
|
|
flex-flow: column;
|
|
|
|
/* width: 1fr;
|
|
|
|
height: 1fr; */
|
|
|
|
/* background-color: aquamarine; */
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
background: var(--other-background);
|
|
|
|
}
|
|
|
|
footer.flex {
|
|
|
|
flex-direction: row;
|
2022-11-21 19:41:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.example-config {
|
|
|
|
background-color: white;
|
|
|
|
padding: 1%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.example-config > div{
|
|
|
|
border-color: var(--other-background);
|
|
|
|
border-radius: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
border-style: groove;
|
|
|
|
}
|
|
|
|
|
|
|
|
form > div > * {
|
|
|
|
margin: 10px;
|
2022-11-27 00:00:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.peering {
|
|
|
|
border-color: var(--other-background);
|
|
|
|
border-radius: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
border-style: inset;
|
|
|
|
display: grid;
|
|
|
|
grid-auto-flow: column;
|
|
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.peering > div {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.peering > div > * {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
background-color: #00000020;
|
|
|
|
border-color: var(--text-color);
|
|
|
|
border-width: 5px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.peering>* {
|
|
|
|
width:auto;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.peering-edit {
|
|
|
|
border-color: lightblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.peering-edit:hover {
|
|
|
|
background-color: #87cefaaa;
|
|
|
|
}
|
|
|
|
|
|
|
|
.peering-delete {
|
|
|
|
border-color: darkred;
|
|
|
|
}
|
|
|
|
.peering-delete:hover {
|
|
|
|
background-color: #ff0000aa;
|
2022-11-11 20:17:37 +01:00
|
|
|
}
|