settings
code:style.css
/* テーブルのセルをわかりやすくする */
/* セル間に線を入れる */
.table-block .cell {
/* 全てのセルの右と下 */
border-right: solid 1px #cccccc;
border-bottom: solid 1px #cccccc;
}
.table-block .cell:first-child {
/* 1列目のセルの左 */
border-left: solid 1px #cccccc;
}
.section-title + .line .table-block .cell {
/* 1行目のセルの上 */
border-top: solid 1px #cccccc;
}
/* 1行目を太字、中央揃え */
.section-title + .line .table-block .cell {
font-weight: bolder;
text-align: center;
}
/* * <ーこれに蛍光のラインを足す */
.level-1{
background: linear-gradient(transparent 60%, rgb(105, 251, 170) 60%); }
/* #で始まるタグをラベル風にする */
atype="hashTag"{
display: inline-block;
padding: 0px 8px;
margin: 0 6px 8px 0;
color: #00c286;
font-size: 0.8em;
border: 1px solid #00c286;
border-radius: 3px;
transition: .3s;
-webkit-transform: scale(1);
transform: scale(1);
}
atype="hashTag":hover{
-webkit-transform: scale(1.1);
transform: scale(1.1);
}