mirror of
https://github.com/yildbs/obsidian-harada-method-plugin.git
synced 2026-07-22 07:40:28 +00:00
54 lines
No EOL
821 B
CSS
54 lines
No EOL
821 B
CSS
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
*/
|
|
|
|
table.harada{
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
padding-bottom: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td.cell{
|
|
width: 11%;
|
|
height: 100px;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
border: 1px dotted rgb(63, 63, 63);
|
|
font-size: 20px;
|
|
}
|
|
|
|
td.left{
|
|
border-left: 3px solid black;
|
|
}
|
|
|
|
td.right{
|
|
border-right: 3px solid black;
|
|
}
|
|
|
|
td.top{
|
|
border-top: 3px solid black;
|
|
}
|
|
|
|
td.bottom{
|
|
border-bottom: 3px solid black;
|
|
}
|
|
|
|
#action{
|
|
background-color: rgb(255, 255, 255);
|
|
}
|
|
|
|
#plan{
|
|
background-color: rgb(239, 255, 201);
|
|
font-size: 25px;
|
|
}
|
|
|
|
#goal{
|
|
background-color: rgb(255, 229, 172);
|
|
font-size: 30px;
|
|
} |