Last active
December 27, 2015 10:09
-
-
Save louh/7309585 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// LiveReload error | |
ParseError: Syntax Error on line 74 in /Users/louhuang/Dropbox/GitHub/rclosner/lv-dof/public/less/styles.less:74:2 | |
73 .left-screen { | |
74 &:extend(.full-screen); | |
75 .box-shadow(3px 0 6px rgba(0,0,0,0.10)); | |
// LESS contents | |
// ... | |
.full-screen { | |
.transition(width .8s); | |
width: 100%; | |
min-height: 100%; | |
z-index: @ui-index; | |
padding: 30px; | |
background-color: @background; | |
position: relative; | |
overflow-x: hidden; | |
overflow-y: auto; | |
} | |
.left-screen { | |
&:extend(.full-screen); | |
.box-shadow(3px 0 6px rgba(0,0,0,0.10)); | |
width: @section-part-width; | |
border-right: 1px solid @lightgray; | |
header { | |
margin-left: 120px; | |
#logo { | |
left: 100px; | |
} | |
} | |
footer { | |
width: @section-part-width - (30 * 2); | |
} | |
#pi { | |
right: 0; | |
} | |
.container { | |
width: 100%; | |
} | |
} | |
// ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment