Coconaru’s Web

フリーランスのWebデザイナーのメモ帳です

Japacartテーマのカスタマイズ

スマホ、PCでデザインを変える場合
@media only screen and (max-width: 767px) {
//スマホのスタイル記述
}
@media only screen and (min-width: 768px) {
//PCのスタイル 記述
}

ボタンを丸くする
.button {
border-radius: 10px;
}

ページの先頭へボタンの色
.pagetop {
background-color: 色;
}
.pagetop svg {
fill: 色;
}

背景色

body {

background-color: 色;

}