mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-17 13:27:50 +08:00
90e7941fe4
* Update cell actions * Add new focus indicator * Update headings typography * Update cell actions and insert buttons * Add sidebar menu * Add settings modal * Update homepage * Update settings dialog * Rename classes * Add floating menu * Update icon colors on hover * Fix homepage tests * Format assets source * Update monaco editor * Fix editor width on resize * Add more padding to the notebook content * Update settings dialog title * Show reevaluate button when the cell is in evaluated state * Show section actions on focus or hover only * Pre-fill runtime selector with the current configuration * Ignore cmd + enter in Markdown cells
18 lines
255 B
CSS
18 lines
255 B
CSS
/* A set of reusable classes */
|
|
|
|
.bg-editor {
|
|
background-color: #282c34;
|
|
}
|
|
|
|
.text-editor {
|
|
color: #abb2bf;
|
|
}
|
|
|
|
.font-editor {
|
|
font-family: "JetBrains Mono";
|
|
font-size: 14px;
|
|
}
|
|
|
|
.shadow-center {
|
|
box-shadow: 0px 15px 99px rgba(13, 24, 41, 0.15);
|
|
}
|