mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
47 lines
587 B
CSS
47 lines
587 B
CSS
![]() |
html, body {
|
||
|
width: 300px;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
margin: 3% auto;
|
||
|
padding: 4px;
|
||
|
text-align: center;
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 3px;
|
||
|
background-color: #eee;
|
||
|
cursor: pointer;
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
.wide {
|
||
|
min-width: 8em;
|
||
|
}
|
||
|
|
||
|
.full {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
#create-text-note-wrapper {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#create-text-note-textarea {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
#save-button {
|
||
|
border-color: #0062cc;
|
||
|
background-color: #0069d9;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
#check-connection-button {
|
||
|
float: right;
|
||
|
margin-top: -6px;
|
||
|
}
|
||
|
|
||
|
button[disabled] {
|
||
|
color: #aaa;
|
||
|
}
|