From dc8725bdc305fa29a4210244c4f05991834a91e5 Mon Sep 17 00:00:00 2001 From: 20syldev Date: Wed, 25 Dec 2024 16:37:04 +0100 Subject: [PATCH] MEDIUM: css: Add 302 status badge color --- css/app.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/css/app.css b/css/app.css index 0cf71d1..bbd03d8 100644 --- a/css/app.css +++ b/css/app.css @@ -1,16 +1,16 @@ @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); * { - padding: 0; margin: 0; + padding: 0; box-sizing: border-box; scroll-behavior: smooth; - font-family: 'Poppins', sans-serif; } body { background: #f5f7fa; color: #1f2937; + font-family: 'Poppins', sans-serif; margin: 20px; transition: all 0.3s; } @@ -65,6 +65,9 @@ body { .status-200 { background: #27be8a; } +.status-302 { + background: #00aeff; +} .status-error { background: #f77777; } @@ -110,4 +113,4 @@ body { .timeline-item-content { background: #374151; } -} +} \ No newline at end of file