From 0d2881c74335bcb9fd9c150bf209ba3d93cf3b59 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sat, 14 Jan 2023 11:37:40 -0300 Subject: Removed old theme --- themes/m10c/assets/css/components/_app.scss | 40 ---------------------- themes/m10c/assets/css/components/_error_404.scss | 7 ---- themes/m10c/assets/css/components/_icon.scss | 6 ---- themes/m10c/assets/css/components/_pagination.scss | 24 ------------- themes/m10c/assets/css/components/_post.scss | 17 --------- themes/m10c/assets/css/components/_posts_list.scss | 17 --------- themes/m10c/assets/css/components/_tag.scss | 15 -------- 7 files changed, 126 deletions(-) delete mode 100644 themes/m10c/assets/css/components/_app.scss delete mode 100644 themes/m10c/assets/css/components/_error_404.scss delete mode 100644 themes/m10c/assets/css/components/_icon.scss delete mode 100644 themes/m10c/assets/css/components/_pagination.scss delete mode 100644 themes/m10c/assets/css/components/_post.scss delete mode 100644 themes/m10c/assets/css/components/_posts_list.scss delete mode 100644 themes/m10c/assets/css/components/_tag.scss (limited to 'themes/m10c/assets/css/components') diff --git a/themes/m10c/assets/css/components/_app.scss b/themes/m10c/assets/css/components/_app.scss deleted file mode 100644 index 28c7bc9..0000000 --- a/themes/m10c/assets/css/components/_app.scss +++ /dev/null @@ -1,40 +0,0 @@ -.app-header { - padding: 2.5em; - background: $darkest-color; - text-align: center; -} - -.app-header-avatar { - max-width: 15rem; - max-height: 15rem; - border-radius: 100%; - border: 0.5rem solid $primary-color; -} - -.app-container { - padding: 2.5rem; -} - -.app-header-social { - font-size: 2em; - color: $lightest-color; - - a { - margin: 0 0.1em; - } -} - -@media (min-width: 940px) { - .app-header { - position: fixed; - top: 0; - left: 0; - width: 20rem; - min-height: 100vh; - } - - .app-container { - max-width: 65rem; - margin-left: 20rem; - } -} diff --git a/themes/m10c/assets/css/components/_error_404.scss b/themes/m10c/assets/css/components/_error_404.scss deleted file mode 100644 index c819570..0000000 --- a/themes/m10c/assets/css/components/_error_404.scss +++ /dev/null @@ -1,7 +0,0 @@ -.error-404 { - text-align: center; -} - -.error-404-title { - text-transform: uppercase; -} diff --git a/themes/m10c/assets/css/components/_icon.scss b/themes/m10c/assets/css/components/_icon.scss deleted file mode 100644 index 207d421..0000000 --- a/themes/m10c/assets/css/components/_icon.scss +++ /dev/null @@ -1,6 +0,0 @@ -.icon { - display: block-inline; - width: 1em; - height: 1em; - vertical-align: -0.125em; -} diff --git a/themes/m10c/assets/css/components/_pagination.scss b/themes/m10c/assets/css/components/_pagination.scss deleted file mode 100644 index cc0d8a1..0000000 --- a/themes/m10c/assets/css/components/_pagination.scss +++ /dev/null @@ -1,24 +0,0 @@ -.pagination { - display: block; - list-style: none; - padding: 0; - font-size: 0.8em; - text-align: center; - margin: 3em 0; -} - -.page-item { - display: inline-block; - .page-link { - display: block; - padding: 0.285em 0.8em; - } - - &.active { - .page-link { - color: $lightest-color; - border-radius: 2em; - background: $primary-color; - } - } -} diff --git a/themes/m10c/assets/css/components/_post.scss b/themes/m10c/assets/css/components/_post.scss deleted file mode 100644 index b8265a7..0000000 --- a/themes/m10c/assets/css/components/_post.scss +++ /dev/null @@ -1,17 +0,0 @@ -.post-title { - color: $lightest-color; -} - -.post-content { - pre { - border-left: 0.4em solid rgba($primary-color, .8); - padding-left: 1em; - } - img { - max-width: 100%; - } -} - -.post-meta { - font-size: 0.8em; -} diff --git a/themes/m10c/assets/css/components/_posts_list.scss b/themes/m10c/assets/css/components/_posts_list.scss deleted file mode 100644 index 2fe0cf0..0000000 --- a/themes/m10c/assets/css/components/_posts_list.scss +++ /dev/null @@ -1,17 +0,0 @@ -.posts-list { - padding: 0; -} - -.posts-list-item { - list-style: none; - &:not(:last-child) { - border-bottom: 1px dashed rgba(255, 255, 255, 0.3); - } - padding: 0.4em 0; -} - -.posts-list-item-description { - display: block; - font-size: 0.8em; -} - diff --git a/themes/m10c/assets/css/components/_tag.scss b/themes/m10c/assets/css/components/_tag.scss deleted file mode 100644 index 8bf628a..0000000 --- a/themes/m10c/assets/css/components/_tag.scss +++ /dev/null @@ -1,15 +0,0 @@ -.tag { - display: inline-block; - margin-right: 0.2em; - padding: 0 0.6em; - font-size: 0.9em; - border-radius: 0.2em; - white-space: nowrap; - background: rgba(255, 255, 255, 0.1); - transition: color 0.35s, background 0.35s; - - &:hover { - transition: color 0.25s, background 0.05s; - background: rgba(255, 255, 255, 0.3); - } -} -- cgit v1.2.3