Test

by imjhane

HTML

<h1>Jhane Chou</h1>

<div class="subtitle">
  <h2>設計領域、日常紀錄;喜歡植物,卻是植物殺手</h2>
  <p class="date">最後更新日期為:2020 年 2 月 27日</p>
</div>

<h3>。:.゚ヽ(*´∀`)ノ゚.:。終於我也能做公告了!感謝前言</h3>

<ol class="word">
  <li>製作參考 
    <a href="https://matters.news/@Andy/" target="_blank">
      @Andy
    </a>
    的
    <a href="https://reurl.cc/8lrRO4" target="_blank">
    教學文
    </a>
  </li>
  <li>概念參考 
    <a href="https://matters.news/@hymnsin" target="_blank">
      @hymnsin
    </a>
    的
    <a href="https://reurl.cc/pDq2Vx" target="_blank">
    公告欄
    </a>
  </li>
  <li>和男友研究,自行 DIY inject,尬出新滋味</li>
</ol>

<p>
需要會基礎的 Html 與 CSS,也能成功置入 Codepen
</p>

<ul class="link">
  <li><a href="https://medium.com/deerlight" target="_blank">Medium</a></li>
  <li class="line"><a href="https://matters.news/@Jhane_Chou" target="_blank">Matters</a></li>
  <li class="line"><a href="https://deerlight.design" target="_blank">Deerlight Design</a></li>
</ul>

CSS

* {
  font-family: Noto San TC, Muli;
  
}

body {
  background: #fafafa;
  padding: 0 20px;
}

h1 {
  font-size: 20px;
}

h2 {
  font-size: 16px;
  display: block;
  margin-left: 18px;
  padding-bottom: 2px;
  font-weight: 600;
}

h3 {
  font-size: 14px;
  display: block;
  font-weight: 600;
  color: #a37d1b;
}

.subtitle {
  border-left: solid 2px #dcbf77;
  display: block;
}

.date {
  font-size: 12px;
  display: block;
  margin-left: 18px;
  margin-top: -12px;
}

p {
  color: #888;
  margin-left: 20px;
}
  
.word {
  margin-left: -20px;
  list-style-type: upper-roman;
}

.link {
  display: inline-flex;
  list-style-type: none;
  margin-left: -20px;
  margin-top: -40px;
  font-size: 14px;
  line-height: 14px;
}

.link ul {
  margin-bottom: -40px;
}

.link > .line::before {
 height: 100%;
 margin: 0 20px;
 border-right: solid 1px #cacaca;
}

a {
  color: #a37d1b;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  color: #dcbf77;
  text-decoration: none;
}