Skip to content

Commit

Permalink
PurgeCSS
Browse files Browse the repository at this point in the history
  • Loading branch information
jeonwonje committed Dec 7, 2020
1 parent f29bf98 commit 9af9113
Showing 1 changed file with 37 additions and 4 deletions.
41 changes: 37 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,12 @@ video {
background-color: rgba(45, 55, 72, var(--bg-opacity));
}

.bg-gray-900 {
--bg-opacity: 1;
background-color: #1a202c;
background-color: rgba(26, 32, 44, var(--bg-opacity));
}

.bg-yellow-600 {
--bg-opacity: 1;
background-color: #d69e2e;
Expand Down Expand Up @@ -650,6 +656,10 @@ video {
border-color: rgba(74, 85, 104, var(--border-opacity));
}

.rounded-lg {
border-radius: 0.5rem;
}

.rounded-full {
border-radius: 9999px;
}
Expand Down Expand Up @@ -690,19 +700,32 @@ video {
line-height: 2rem;
}

.m-16 {
margin: 4rem;
}

.mx-4 {
margin-left: 1rem;
margin-right: 1rem;
}

.mx-8 {
margin-left: 2rem;
margin-right: 2rem;
}

.mb-4 {
margin-bottom: 1rem;
}

.mt-12 {
margin-top: 3rem;
}

.mt-16 {
margin-top: 4rem;
}

.p-4 {
padding: 1rem;
}

.py-12 {
padding-top: 3rem;
padding-bottom: 3rem;
Expand Down Expand Up @@ -847,6 +870,11 @@ video {
max-width: 1280px;
}
}

.sm\:mx-24 {
margin-left: 6rem;
margin-right: 6rem;
}
}

@media (min-width: 768px) {
Expand Down Expand Up @@ -937,4 +965,9 @@ video {
max-width: 1280px;
}
}

.xl\:mx-64 {
margin-left: 16rem;
margin-right: 16rem;
}
}

0 comments on commit 9af9113

Please sign in to comment.