summaryrefslogtreecommitdiff
path: root/clams-server/src/main/resources/public/css/article.css
diff options
context:
space:
mode:
Diffstat (limited to 'clams-server/src/main/resources/public/css/article.css')
-rw-r--r--clams-server/src/main/resources/public/css/article.css63
1 files changed, 0 insertions, 63 deletions
diff --git a/clams-server/src/main/resources/public/css/article.css b/clams-server/src/main/resources/public/css/article.css
deleted file mode 100644
index 318df62..0000000
--- a/clams-server/src/main/resources/public/css/article.css
+++ /dev/null
@@ -1,63 +0,0 @@
-.article-header {
- display: flex;
- justify-content: space-between;
- margin-top: 2.8rem;
- margin-bottom: 2.5rem;
- font-size: 0.9rem;
- opacity: 0.7;
- border-bottom: 1px solid var(--border-color);
- padding-bottom: 0.6rem;
-}
-
-h1 {
- text-align: left;
-}
-
-blockquote {
- border-left: 4px solid var(--accent-color);
- padding-left: 1rem;
- margin-left: 0;
- font-style: italic;
-}
-
-.article-content {
- line-height: 1.8;
- font-size: var(--font-size-body);
- margin-bottom: 5rem;
-}
-
-.article-content p {
- margin-bottom: 1.5rem;
- font-size: inherit;
-}
-
-.article-content p:has(img) {
- margin: 2.4rem 0;
- text-align: center;
-}
-
-.article-content img {
- width: 100%;
- max-width: 34.4rem;
- height: auto;
- border: 1px solid var(--border-color);
- border-radius: 8px;
- display: inline-block;
-}
-
-.article-nav {
- display: flex;
- justify-content: space-between;
- margin-top: 3.8rem;
- padding-top: 1.8rem;
- border-top: 1px dashed var(--border-color);
-}
-
-@media (max-width: 768px) {
- .article-header {
- margin-top: 10px;
- flex-direction: column;
- align-items: center;
- gap: 10px;
- }
-}