38 lines
701 B
SCSS
Raw Permalink Normal View History

2017-04-11 19:02:29 -07:00
.filetree {
background: $offwhite;
border: 4px solid $lightgray;
border-radius: 4px;
2017-04-11 19:02:29 -07:00
margin: 0 0 24px 0;
padding: 16px 32px;
2017-04-11 19:02:29 -07:00
.file {
display: block;
font-family: $main-font;
letter-spacing: 0.3px;
2017-04-11 19:02:29 -07:00
line-height: 32px;
color: $darkgray;
2017-04-11 19:02:29 -07:00
}
.children {
2017-04-11 10:35:36 -07:00
padding-left: 24px;
position: relative;
overflow: hidden;
2017-04-11 19:02:29 -07:00
.file {
position: relative;
2017-04-11 19:02:29 -07:00
&:before {
content: '';
left: -18px;
bottom: 16px;
width: 16px;
height: 9999px;
position: absolute;
border-width: 0 0 1px 1px;
border-style: solid;
border-color: $lightgray;
border-radius: 0 0 0 3px;
}
}
2017-04-11 19:02:29 -07:00
}
}