diff options
author | Huy-Ngo <duchuy29092000@gmail.com> | 2021-01-11 17:26:21 +0700 |
---|---|---|
committer | Huy-Ngo <duchuy29092000@gmail.com> | 2021-01-11 17:26:21 +0700 |
commit | 4eee045018bb5612d3577966ff3d86bd15ebd70a (patch) | |
tree | 7bf4085c045b0496c2aa1d258a5bb8abd9a12296 | |
parent | 668428032b6a9dade3eab053da5f22549477e74f (diff) | |
download | blog-4eee045018bb5612d3577966ff3d86bd15ebd70a.tar.gz |
Rename for more generic stylesheet
-rw-r--r-- | _includes/custom-head.html | 2 | ||||
-rw-r--r-- | assets/css/custom.scss (renamed from assets/css/webring.scss) | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/_includes/custom-head.html b/_includes/custom-head.html index 172ec27..38fa5de 100644 --- a/_includes/custom-head.html +++ b/_includes/custom-head.html @@ -1,4 +1,4 @@ -<link rel="stylesheet" href="/assets/css/webring.css"> +<link rel="stylesheet" href="/assets/css/custom.css"> <link rel="apple-touch-icon" sizes="180x180" href="/assets/images/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon-16x16.png"> diff --git a/assets/css/webring.scss b/assets/css/custom.scss index d36883f..f0b026a 100644 --- a/assets/css/webring.scss +++ b/assets/css/custom.scss @@ -19,3 +19,12 @@ } } } + +dl { + dt { + font-weight: bold; + } + dd { + text-indent: 1em; + } +} |