zrok/ui/src/index.css

116 lines
2.0 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
}
.container {
display: grid;
margin-left: 10%;
margin-right: 10%;
}
2022-08-03 18:41:37 +02:00
.login {
background-color: #3b2693;
text-align: center;
padding: 25px;
color: white;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
justify-content: center;
}
.login h1 {
font-size: 64pt;
}
.login fieldset {
width: 500px;
border-radius: 25px;
}
.login label {
text-align: right;
width: 100px;
float: left;
font-family: 'Russo One', sans-serif;
margin-right: 10px;
}
.login fieldset legend {
font-family: 'Russo One', sans-serif;
}
.login fieldset p {
clear: both;
padding: 5px;
}
.login input {
width: 300px;
float: left;
}
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 18:41:37 +02:00
background-color: #222;
2022-08-03 17:54:11 +02:00
border-radius: 5px 5px 5px 5px;
border: 1px solid #846fec;
2022-08-03 18:41:37 +02:00
color: #846fec;
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-02 16:34:47 +02:00
}