zrok/ui/src/index.css

152 lines
2.4 KiB
CSS
Raw Normal View History

2022-08-01 21:54:20 +02:00
body {
margin: 0;
2022-08-03 00:12:03 +02:00
font-family: 'JetBrains Mono', Consolas, 'Courier New', monospace;
2022-08-01 21:54:20 +02:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
2022-08-02 16:34:47 +02:00
h1, h2, h3, h4, h5, h6 {
font-family: 'Russo One', sans-serif;
2022-08-03 00:12:03 +02:00
}
#zrok-enable {
text-align: center;
margin-top: 100px;
}
#zrok-enable h1 {
margin-bottom: 50px;
}
2022-08-03 00:12:03 +02:00
.container {
display: grid;
margin-left: 10%;
margin-right: 10%;
}
.fullscreen {
2022-08-03 18:41:37 +02:00
background-color: #3b2693;
text-align: center;
padding: 25px;
color: white;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
justify-content: center;
}
.fullscreen h1 {
2022-08-03 18:41:37 +02:00
font-size: 64pt;
}
.fullscreen fieldset {
2022-08-03 18:41:37 +02:00
width: 500px;
border-radius: 25px;
}
.fullscreen label {
2022-08-03 18:41:37 +02:00
text-align: right;
width: 100px;
float: left;
font-family: 'Russo One', sans-serif;
margin-right: 10px;
}
.fullscreen fieldset legend {
2022-08-03 18:41:37 +02:00
font-family: 'Russo One', sans-serif;
}
.fullscreen fieldset p {
2022-08-03 18:41:37 +02:00
clear: both;
padding: 5px;
}
.fullscreen input {
2022-08-03 18:41:37 +02:00
width: 300px;
float: left;
}
2022-09-21 20:33:27 +02:00
.fullscreen p a {
color: white;
font-weight: bold;
}
2022-08-03 18:41:37 +02:00
2022-08-03 00:12:03 +02:00
.header {
2022-08-03 16:58:47 +02:00
background-color: #3b2693;
2022-08-03 00:12:03 +02:00
color: white;
padding-left: 2em;
padding-right: 2em;
display: flex;
2022-08-03 17:54:11 +02:00
align-items: center;
2022-08-03 16:58:47 +02:00
border-radius: 0 0 25px 25px;
2022-08-03 00:12:03 +02:00
}
2022-08-03 17:54:11 +02:00
.header-title {
font-family: 'Russo One', sans-serif;
font-size: 3em;
margin-left: 0.53em;
}
.header-status {
2022-08-03 00:12:03 +02:00
width: 100%;
display: grid;
2022-08-03 18:41:37 +02:00
grid-template-rows: 1fr 1fr;
2022-08-03 17:54:11 +02:00
}
.header-status div p {
font-size: 75%;
2022-08-03 00:12:03 +02:00
}
2022-08-03 17:54:11 +02:00
.header-status div {
2022-08-03 00:12:03 +02:00
text-align: right;
}
2022-08-03 17:54:11 +02:00
.header-controls {
display: flex;
justify-content: right;
2022-08-03 18:41:37 +02:00
align-items: flex-end;
2022-08-03 17:54:11 +02:00
}
.header-controls button {
margin-left: 30px;
display: flex;
align-items: center;
2022-08-03 19:43:54 +02:00
background-color: #30205d;
2022-08-03 17:54:11 +02:00
border-radius: 5px 5px 5px 5px;
2022-08-03 19:43:54 +02:00
border: 1px solid #7733ff;
color: #7733ff;
2022-08-03 17:54:11 +02:00
padding: 5px;
2022-08-03 18:41:37 +02:00
width: 100px;
2022-08-03 17:54:11 +02:00
justify-content: center;
2022-08-03 18:41:37 +02:00
height: 2em;
margin-bottom: 1em;
2022-08-03 17:54:11 +02:00
}
.header-controls button:hover {
color: white;
border-color: white;
}
2022-08-03 00:12:03 +02:00
.main {
padding: 2em;
2022-08-03 16:58:47 +02:00
}
.rdt_TableCol_Sortable div {
font-family: 'Russo One', sans-serif;
font-size: 1.25em;
2022-08-03 21:48:04 +02:00
}
.network {
height: 400px;
2022-08-05 16:42:39 +02:00
}
.react-flow__attribution {
display: none;
2022-08-05 20:20:03 +02:00
}
.nested-services {
padding-left: 10em;
2022-08-08 19:24:14 +02:00
}
.popover {
padding: 0 25px;
}
2022-08-08 19:24:14 +02:00
svg.flowNode {
vertical-align: middle;
2022-09-20 22:10:21 +02:00
}
.errorMessage {
color: deeppink;
2022-08-02 16:34:47 +02:00
}