0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-05-08 12:08:40 +00:00

change tack, keep border on bottom but add page counter

This commit is contained in:
Gazook89
2021-09-11 16:12:47 -05:00
parent 0db37bc204
commit eee343c197
+9 -3
View File
@@ -4,10 +4,16 @@
width : 100%;
.codeEditor{
height : 100%;
height : 100%;
counter-reset : page;
.pageLine{
background : linear-gradient(to bottom, #DDD 0%, #EEE 100%);
border-top : #AAA solid 1px;
background : linear-gradient(to bottom, white 80%, lightgray);
&:after{
content : counter(page);
counter-increment : page;
float : right;
color : gray;
}
}
.columnSplit{
font-style : italic;