notes/style.css

109 lines
1.3 KiB
CSS
Raw Normal View History

2023-01-18 12:34:55 +01:00
/* globals */
body {
margin-left: 7%;
margin-right: 7%;
2023-01-18 12:34:55 +01:00
}
2023-07-04 17:41:19 +02:00
a {
color: inherit;
}
2023-01-18 12:34:55 +01:00
input {
outline: none;
border: none;
font-family: inherit;
font-size: inherit;
line-height: inherit;
color: inherit;
2023-01-18 12:34:55 +01:00
}
/* scrollbars */
:root
{
scrollbar-width: thin;
scrollbar-color: lightgray;
2023-01-18 12:34:55 +01:00
}
body::-webkit-scrollbar {
height: 7px;
width: 7px;
background-color: darkgray;
2023-01-18 12:34:55 +01:00
}
body::-webkit-scrollbar-thumb {
background-color: lightgray;
2023-01-18 12:34:55 +01:00
border-radius: 10px;
}
/* note page and editor */
#notepage {
width: 100%;
}
#md {
outline: none;
border: none;
width: 100%;
color: inherit;
2023-01-18 12:34:55 +01:00
resize: none;
2023-09-11 09:57:00 +02:00
2023-01-18 12:34:55 +01:00
font-family: inherit;
font-size: inherit;
line-height: inherit;
background-color: inherit;
}
#network {
position: absolute;
top: 0;
width: 100%;
height: 100%;
opacity: 1;
}
2023-01-18 12:34:55 +01:00
/* top bar content */
#topbar {
height: 50px;
width: 100%;
}
#title {
width: 100%;
font-size: 20px;
background-color: inherit;
height: 100%;
font-weight: bold;
2023-01-18 12:34:55 +01:00
}
/* search file dialog */
.selected {
background-color: darkgray;
}
#filter {
width: 100%;
}
#searchdialog {
position: absolute;
top: 0;
background-color: lightgray;
opacity: 1;
width: 90%;
color: black;
2023-01-18 12:34:55 +01:00
}
/* authent */
#bigtitle {
font-size: 50px;
line-height: 100%;
}