mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-09-02 20:21:19 +02:00
98 lines
1.8 KiB
CSS
98 lines
1.8 KiB
CSS
body {
|
|
margin: 0px !important;
|
|
font-family: 'Open Sans';
|
|
}
|
|
|
|
.app-main {
|
|
overflow: visible;
|
|
}
|
|
|
|
#formBox input {
|
|
font-family: 'Open Sans';
|
|
font-weight: 600 !important;
|
|
background-color: transparent;
|
|
border: none;
|
|
width: 100%;
|
|
outline: none;
|
|
resize: none;
|
|
font-size: 25px;
|
|
height: 45x;
|
|
padding-top:0px;
|
|
padding-bottom:0px;
|
|
}
|
|
|
|
#formBox {
|
|
margin-block-end: 0px;
|
|
position: relative;
|
|
}
|
|
|
|
#titlebar {
|
|
background-color: transparent;
|
|
padding-left: 0px;
|
|
padding-right: 12px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
}
|
|
#formBox > div,
|
|
#formBox > input {
|
|
word-wrap: break-word; /* make sure the div and the textarea wrap words in the same way */
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
|
|
#titlebar input:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.info-bar {
|
|
font-family: 'Open Sans';
|
|
color: gray;
|
|
font-size: 11.5px;
|
|
display: flex;
|
|
padding-left: 14px !important;
|
|
justify-content: space-between;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.info-bar a {
|
|
text-decoration: none;
|
|
color: gray;
|
|
}
|
|
|
|
#infowords,
|
|
#infodate,
|
|
#infosaved {
|
|
font-family: 'Open Sans';
|
|
border-radius: 5px;
|
|
margin:0px !important;
|
|
margin-top: 0;
|
|
margin-right: 5px !important;
|
|
margin-left: 0px;
|
|
padding-top: 2.5px;
|
|
}
|
|
|
|
#infoempty {
|
|
font-family: 'Open Sans';
|
|
border-radius: 5px;
|
|
margin:0px !important;
|
|
margin-top: 0;
|
|
margin-right: 0px !important;
|
|
margin-left: 0px;
|
|
padding-top: 2.5px;
|
|
}
|
|
|
|
.visible {
|
|
display: inline-flex !important;
|
|
}
|
|
|
|
.noselect {
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
-webkit-user-select: none; /* Safari */
|
|
-khtml-user-select: none; /* Konqueror HTML */
|
|
-moz-user-select: none; /* Old versions of Firefox */
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
user-select: none; /* Non-prefixed version, currently
|
|
supported by Chrome, Edge, Opera and Firefox */
|
|
}
|