overleaf/services/web/frontend/stylesheets/modules/galileo.less
Timothée Alby ac3bc987d9 Merge pull request #9297 from overleaf/ta-galileo-module
Create Galileo Module

GitOrigin-RevId: 0d9dfeebc150bd6a0d828f55be47f9d9f1a70d66
2022-08-19 08:04:56 +00:00

66 lines
1.2 KiB
Text

.galileo {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
min-height: 220px;
background-color: @galileo-bg;
color: @galileo-color;
.galileo-header {
display: flex;
background-color: @galileo-header-background;
:first-child {
flex: 1;
}
.galileo-close-button {
background: transparent;
color: @galileo-color;
padding-left: @padding-sm;
padding-right: @padding-sm;
margin-left: @margin-xs;
font-size: 24px;
font-weight: bold;
line-height: 1;
}
}
.galileo-font-lucida {
font-family: @editor-font-lucida;
}
.galileo-font-monaco {
font-family: @editor-font-monaco;
}
.galileo-body {
padding: 5px;
overflow-y: auto;
.galileo-items {
h2 {
font-size: 120%;
font-weight: normal;
padding: 0;
margin: 5px 0;
color: inherit;
}
.galileo-item {
display: flex;
align-items: flex-start;
gap: 5px;
margin-bottom: 5px;
.galileo-item-text {
flex: 1;
background-color: white;
color: black;
white-space: break-spaces;
}
}
}
}
}