From f2ee115c0fefe51eed8f783a8b201f5736c468ed Mon Sep 17 00:00:00 2001 From: yuki540 Date: Thu, 19 Apr 2018 17:42:35 +0900 Subject: [PATCH] =?UTF-8?q?add:=20pc=E7=89=88=E3=81=AE=E3=82=B9=E3=82=BF?= =?UTF-8?q?=E3=82=A4=E3=83=AB=E3=82=B7=E3=83=BC=E3=83=88=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/scss/modules/pc/history-page.scss | 57 +++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/scss/modules/pc/history-page.scss diff --git a/src/scss/modules/pc/history-page.scss b/src/scss/modules/pc/history-page.scss new file mode 100644 index 0000000..88f5f14 --- /dev/null +++ b/src/scss/modules/pc/history-page.scss @@ -0,0 +1,57 @@ +@include pc-layout { + .history-page { + + .history-box { + width: 600px; + margin: 0 auto; + margin-top: 50px; + + section { + width: 90%; + margin: 20px auto; + padding: 20px; + box-sizing: border-box; + border: dashed 1px $theme-purple; + border-radius: 10px; + + .version { + font-size: 14px; + color: $theme-light-purple; + margin-bottom: 10px; + } + + .title { + font-size: 20px; + text-align: center; + padding: 6px 0; + color: #fff; + margin-bottom: 8px; + border-radius: 10px; + background-color: $theme-light-purple; + } + + img { + display: block; + width: 100%; + border-radius: 10px; + } + + a { + display: block; + width: 200px; height: 40px; + margin: 0 auto; + border: dashed 2px $theme-light-purple; + border-radius: 10px; + font-size: 16px; + color: $theme-purple; + display: block; + text-align: center; + line-height: 40px; + margin-top: 20px; + transition: all 0.35s ease 0s; + } + a:hover { background-color: $theme-purple; color: $theme-bg; } + } + } + } +}