diff --git a/assets/css/styles.css b/assets/css/styles.css index f83ed0e..02e4bc7 100644 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -38,9 +38,31 @@ div { h1 { text-align: center; - box-sizing: border-box; - border-top: 1px solid; - border-bottom: 1px solid; + padding: 30px; + position: relative; +} + +h1::before, h1::after { + content: ""; + position: absolute; + left: 0; + right: 0; + height: 10px; + background: url('data:image/svg+xml;utf8,'); +} + +h1::before { top: 0; } +h1::after { bottom: 0; } + +@keyframes wave { + from { background-position-x: 0; } + to { background-position-x: 100px; } +} + +a { + background-color: #cdae98; + color: black; + text-decoration: none; } pre {