SSH keys CRUD working
This commit is contained in:
@ -93,11 +93,11 @@ label.align {
|
||||
min-width: 10em;
|
||||
}
|
||||
|
||||
input, select, label {
|
||||
input, textarea, select, label {
|
||||
margin: 0.5em;
|
||||
}
|
||||
|
||||
input, select {
|
||||
input, select, textarea {
|
||||
outline: 0;
|
||||
padding: 0.25em 0.5em;
|
||||
border-radius: 0.5em;
|
||||
@ -118,7 +118,7 @@ select {
|
||||
background-size: 0.5em;
|
||||
}
|
||||
|
||||
input {
|
||||
input, textarea {
|
||||
background: none;
|
||||
}
|
||||
|
||||
@ -126,18 +126,31 @@ input[type=text] {
|
||||
font: calc(0.40rem + 1vmin) monospace;
|
||||
border: 0;
|
||||
border-bottom: 1px solid #777e73;
|
||||
min-width: 20em;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
input[type=submit], select {
|
||||
input[type=text], textarea {
|
||||
min-width: 20em;
|
||||
}
|
||||
input[type=text].expand, textarea.expand {
|
||||
width: 100%;
|
||||
}
|
||||
textarea {
|
||||
height: 6em;
|
||||
}
|
||||
|
||||
input[type=submit], select, textarea {
|
||||
font: calc(0.40rem + 1vmin) monospace;
|
||||
cursor: pointer;
|
||||
border: 1px solid #777e73;
|
||||
background-color: #bdc7b810;
|
||||
}
|
||||
|
||||
|
||||
|
||||
input[type=submit], select {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
font-size:calc(0.40rem + 1vmin);
|
||||
margin: initial;
|
||||
@ -156,6 +169,13 @@ ul li {
|
||||
border: 1px solid #777e73;
|
||||
background: #bdc7b810;
|
||||
}
|
||||
.break-word {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.dim {
|
||||
color: #777e73bb;
|
||||
}
|
||||
|
||||
footer, p {
|
||||
text-align: left;
|
||||
@ -172,3 +192,7 @@ footer {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
|
||||
.smalltext {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user