Skip to content

Commit

Permalink
MEDIUM: css: Add 302 status badge color
Browse files Browse the repository at this point in the history
  • Loading branch information
20syldev committed Dec 25, 2024
1 parent 1443557 commit dc8725b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions css/app.css
Original file line number Diff line number Diff line change
@@ -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;
}
Expand Down Expand Up @@ -65,6 +65,9 @@ body {
.status-200 {
background: #27be8a;
}
.status-302 {
background: #00aeff;
}
.status-error {
background: #f77777;
}
Expand Down Expand Up @@ -110,4 +113,4 @@ body {
.timeline-item-content {
background: #374151;
}
}
}

0 comments on commit dc8725b

Please sign in to comment.