Skip to content

Instantly share code, notes, and snippets.

@Dillie-O
Created April 9, 2015 17:18
Show Gist options
  • Save Dillie-O/dcf3c98376987ad4eb98 to your computer and use it in GitHub Desktop.
Save Dillie-O/dcf3c98376987ad4eb98 to your computer and use it in GitHub Desktop.
SiteFinity Formatted Custom Layout Widget Styles
.fancy-layout {
background-color: bisque;
}
.test-layout li:before
{
content: '✔';
color: green;
margin-left: -1em; margin-right: .100em;
}
.test-layout ul
{
padding-left:20px;
text-indent:2px;
list-style: none;
list-style-position:outside;
}
.arrow_box {
position: relative;
background: #88b7d5;
border: 4px solid #c2e1f5;
}
.arrow_box:after, .arrow_box:before {
left: 100%;
top: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.arrow_box:after {
border-color: rgba(136, 183, 213, 0);
border-left-color: #88b7d5;
border-width: 30px;
margin-top: -30px;
}
.arrow_box:before {
border-color: rgba(194, 225, 245, 0);
border-left-color: #c2e1f5;
border-width: 36px;
margin-top: -36px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment