61 lines
844 B
CSS
61 lines
844 B
CSS
#sidebar {
|
|
width: 220px;
|
|
font-size: 90%;
|
|
}
|
|
|
|
.tabs ul {
|
|
list-style-type: none;
|
|
margin: 0 0 1em 0;
|
|
padding: 0;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
.tabs li {
|
|
display: inline-block;
|
|
}
|
|
|
|
.tabs li a {
|
|
display: inline-block;
|
|
padding: 0.5em 1em;
|
|
margin-bottom: -1px;
|
|
}
|
|
|
|
.tabs li a {
|
|
border: 1px solid white;
|
|
border-bottom: 1px solid #ccc;
|
|
color: silver;
|
|
}
|
|
.tabs li.selected a {
|
|
border: 1px solid #ccc;
|
|
border-bottom: 1px solid white;
|
|
color: inherit;
|
|
}
|
|
|
|
.avatar-wrapper {
|
|
text-align: center;
|
|
}
|
|
|
|
.options ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
form.settings label.left,
|
|
form.delete label.left,
|
|
form.edit label.left {
|
|
width: 9em;
|
|
}
|
|
|
|
form.settings .alert,
|
|
form.delete .alert,
|
|
form.edit .alert {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
form.settings input,
|
|
form.delete input,
|
|
form.edit select,
|
|
form.edit input {
|
|
width: 16em;
|
|
max-width: 90%;
|
|
}
|