Skip to content

Instantly share code, notes, and snippets.

@dreamark
Created June 7, 2016 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dreamark/414dbe5dc24ced7fb6f53f96644469c7 to your computer and use it in GitHub Desktop.
Save dreamark/414dbe5dc24ced7fb6f53f96644469c7 to your computer and use it in GitHub Desktop.
/*コラム枠*/
.point,.column,.attention{
position: relative;
border: 1px dashed #1D3557;
margin: 32px 16px;
background-color: #e5e5e5;
padding: 50px 20px 20px;
font-size: 90%;
}
.point:before{
font-family: "blogicon";
content: "\f01a POINT";
position: absolute;
left: 20px;
top: 20px;
line-height: 1em;
font-size:140%;
color: #1D3557;
}
.column:before{
font-family: "blogicon";
content: "\f024 Column";
position: absolute;
left: 20px;
top: 20px;
line-height: 1em;
font-size:140%;
color: #1D3557;
}
.attention:before{
font-family: "blogicon";
content: "\f041 Attention";
position: absolute;
left: 20px;
top: 20px;
line-height: 1em;
font-size:150%;
color: #1D3557;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment