0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 22:52:40 +00:00
Files
homebrewery/client/homebrew/editor/editor.less
2016-05-05 10:03:51 -04:00

69 lines
1.3 KiB
Plaintext

.editor{
position : relative;
height : 100%;
min-height : 100%;
width : 100%;
//display: flex;
//flex-direction: column;
/*
.textIcons{
display : inline-block;
vertical-align : top;
.icon{
display : inline-block;
height : 30px;
width : 30px;
cursor : pointer;
font-size : 1.5em;
line-height : 30px;
text-align : center;
&:nth-child(8n + 1){ background-color: @blue; }
&:nth-child(8n + 2){ background-color: @orange; }
&:nth-child(8n + 3){ background-color: @teal; }
&:nth-child(8n + 4){ background-color: @red; }
&:nth-child(8n + 5){ background-color: @purple; }
&:nth-child(8n + 6){ background-color: @silver; }
&:nth-child(8n + 7){ background-color: @yellow; }
&:nth-child(8n + 8){ background-color: @green; }
}
}
textarea{
box-sizing : border-box;
resize : none;
overflow-y : scroll;
height : 100%;
width : 100%;
padding : 10px;
border : none;
outline: none;
}
*/
.snippetBar{
padding : 5px;
background-color: #ddd;
display: flex;
align-items: center;
//justify-content: center;
.snippetGroup{
.animate(background-color);
border-radius : 5px;
&:hover, &.selected{
background-color: #999;
}
padding : 5px;
font-size: 20px;
margin: 0px 10px;
//cursor : pointer;
}
}
}