コンテンツ
本ブログにて使用しているCSSを公開する。はてなブログにおいて普通にCSSを適用しようとすると、反映されないことが多い。これに対処するために、私は!importantを活用している。(2021/01/23更新)
原文ママ
デフォルト(手を加えない)
/* <system section="theme" selected="neutral"> */ @import "/css/theme/neutral/neutral.css"; /* </system> */ /* <system section="background" selected="undefined"> */ /* </system> */
コードブロック
.entry-content pre.code { background-color: #F8F8F8; color: #454545; max-height: 100em; overflow: auto; font-family: Monaco, Consolas, 'Courier New', Courier, monospace, sans-serif; border-radius: 2px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; font-size: 15px; border: 1px solid #e4e4e4; text-overflow: clip; white-space: pre; overflow-x: scroll; } .synComment { color: #03AF7A !important; } .synConstant { color: #FF4B00 !important; } .synIdentifier { color: #454545 !important; } .synPreProc { color: #990099 !important; } .synSpecial { color: #454545 !important; } .synStatement { color: #990099 !important; } .synType { color: #005AFF !important; }
インラインコード
.entry-content code { background-color: #F8F8F8 !important; color: #454545 !important; overflow: auto; font-family: Monaco, Consolas, 'Courier New', Courier, monospace, sans-serif !important; font-size: 15px !important; }
箇条書き
.entry-content ul li { font-size: 18px; color: #454545; } .entry-content ul li:before { color: #454545; } .entry-content ol li { font-size: 18px; color: #454545; } .entry-content ol li:before { color: #454545; }
見出し
.entry-content h1 { padding: .25em 0 .25em .75em; border-left: 6px solid #ccc; font-size: 18px !important; color: #454545 !important; } .entry-content h2 { font-size: 18px !important; color: #454545 !important; }
使用イメージ
箇条書き
通常の箇条書き
- イメージの一つを
- ここに記載いたします
番号付きの箇条書き
- イメージの一つを
- ここに記載いたします
C++
#include <iostream> #include<fstream> #include<string> using namespace std; int main() { fstream myFile; myFile.open("myTxtFile.txt", ios::in);//read if (myFile.is_open()) { string line; while (getline(myFile, line)) { cout << line << endl; } myFile.close(); } system("pause>0"); }
VBA
Sub Test2() Dim i As Long Dim j As String Dim fsoOBJ As FileSystemObject Set fsoOBJ = New FileSystemObject For i = 1 To 10 j = Format(i, "000") fsoOBJ.CreateTextFile(ThisWorkbook.Path & "\" & j & ".txt").WriteLine ("Hello " & j & "!") Next i End Sub
R
library(ggplot2) dat<-read.table("histsample.dat",sep="\t",header=F,fileEncoding="utf-8") colnames(dat) <- c("human","height") ggplot(dat, aes(x=height)) + geom_histogram(breaks=seq(140,190,by=5), fill="orange", colour="blue") + scale_y_continuous(breaks=seq(0,60,by=10),limits=c(0,60))