Skip to content

Commit 9a9baab

Browse files
committed
Remover CDN do tailwind pra não ter um grande download ao entrar na aplicação
1 parent 9a0cb24 commit 9a9baab

File tree

2 files changed

+136
-2
lines changed

2 files changed

+136
-2
lines changed

css/style.css

Lines changed: 136 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
margin: 0;
66
/* padding: 0; */
77
}
8-
8+
a {
9+
text-decoration: none;
10+
color: inherit;
11+
}
912
body {
1013
text-align: center;
1114
min-height: 100vh;
@@ -264,4 +267,136 @@ li {
264267

265268
.h-5 {
266269
height: 20px !important;
270+
}
271+
272+
/* Tailwind Utility Classes */
273+
.text-3xl {
274+
font-size: 1.875rem;
275+
line-height: 2.25rem;
276+
}
277+
278+
.text-xl {
279+
font-size: 1.25rem;
280+
line-height: 1.75rem;
281+
}
282+
283+
.text-sm {
284+
font-size: 0.875rem;
285+
line-height: 1.25rem;
286+
}
287+
288+
.italic {
289+
font-style: italic;
290+
}
291+
292+
.opacity-70 {
293+
opacity: 0.7;
294+
}
295+
296+
.opacity-90 {
297+
opacity: 0.9;
298+
}
299+
300+
.border-y {
301+
border-top-width: 1px;
302+
border-bottom-width: 1px;
303+
}
304+
305+
.border-white\/40 {
306+
border-color: rgba(255, 255, 255, 0.4);
307+
}
308+
309+
.rounded-lg {
310+
border-radius: 0.5rem;
311+
}
312+
313+
.inline-flex {
314+
display: inline-flex;
315+
}
316+
317+
.items-center {
318+
align-items: center;
319+
}
320+
321+
.justify-center {
322+
justify-content: center;
323+
}
324+
325+
.gap-2 {
326+
gap: 0.5rem;
327+
}
328+
329+
.gap-4 {
330+
gap: 1rem;
331+
}
332+
333+
.font-medium {
334+
font-weight: 500;
335+
}
336+
337+
.mt-8 {
338+
margin-top: 2rem;
339+
}
340+
341+
.invert {
342+
filter: invert(1);
343+
}
344+
345+
.flex {
346+
display: flex;
347+
}
348+
349+
.bg-blue-500 {
350+
background-color: #3b82f6;
351+
}
352+
353+
.hover\:bg-blue-600:hover {
354+
background-color: #2563eb;
355+
}
356+
357+
.hover\:bg-green-700:hover {
358+
background-color: #15803d;
359+
}
360+
361+
.bg-gradient-to-r {
362+
background-image: linear-gradient(to right, var(--tw-gradient-stops));
363+
}
364+
365+
.from-purple-500 {
366+
--tw-gradient-from: #a855f7;
367+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(168 85 247 / 0));
368+
}
369+
370+
.via-pink-500 {
371+
--tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgb(236 72 153 / 0));
372+
}
373+
374+
.to-orange-500 {
375+
--tw-gradient-to: #f97316;
376+
}
377+
378+
.hover\:from-purple-600:hover {
379+
--tw-gradient-from: #9333ea;
380+
}
381+
382+
.hover\:via-pink-600:hover {
383+
--tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgb(219 39 119 / 0));
384+
}
385+
386+
.hover\:to-orange-600:hover {
387+
--tw-gradient-to: #ea580c;
388+
}
389+
390+
.transition-all {
391+
transition-property: all;
392+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
393+
transition-duration: 150ms;
394+
}
395+
396+
.w-4 {
397+
width: 1rem;
398+
}
399+
400+
.h-4 {
401+
height: 1rem;
267402
}

index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>UFF POPULAR</title>
7-
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
87
<link rel="stylesheet" href="css/style.css" />
98
</head>
109
<body>

0 commit comments

Comments
 (0)