Skip to content

Commit a39d550

Browse files
committed
us only tailwind
1 parent 0c02395 commit a39d550

File tree

5 files changed

+27
-68
lines changed

5 files changed

+27
-68
lines changed

assests/css/styles.css

+18-46
Original file line numberDiff line numberDiff line change
@@ -699,16 +699,12 @@ video {
699699
margin: 0.25rem;
700700
}
701701

702-
.m-2 {
703-
margin: 0.5rem;
704-
}
705-
706702
.m-3 {
707703
margin: 0.75rem;
708704
}
709705

710-
.m-96 {
711-
margin: 24rem;
706+
.mb-32 {
707+
margin-bottom: 8rem;
712708
}
713709

714710
.ml-4 {
@@ -719,30 +715,6 @@ video {
719715
margin-top: 0.5rem;
720716
}
721717

722-
.mb-96 {
723-
margin-bottom: 24rem;
724-
}
725-
726-
.mb-6 {
727-
margin-bottom: 1.5rem;
728-
}
729-
730-
.mb-60 {
731-
margin-bottom: 15rem;
732-
}
733-
734-
.mb-0 {
735-
margin-bottom: 0px;
736-
}
737-
738-
.mb-3 {
739-
margin-bottom: 0.75rem;
740-
}
741-
742-
.mb-32 {
743-
margin-bottom: 8rem;
744-
}
745-
746718
.box-border {
747719
box-sizing: border-box;
748720
}
@@ -858,10 +830,6 @@ video {
858830
height: 0.1px;
859831
}
860832

861-
.h-\[14\.3vh\] {
862-
height: 14.3vh;
863-
}
864-
865833
.h-\[86\.7vh\] {
866834
height: 86.7vh;
867835
}
@@ -1888,6 +1856,22 @@ video {
18881856
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
18891857
}
18901858

1859+
.bg-hero-pattern {
1860+
background-image: url('https://docegeracao.com.br/wp-content/uploads/2019/06/bg-whatsapp.jpg');
1861+
}
1862+
1863+
.bg-\[url\(\'\/img\/hero-pattern\.svg\'\)\] {
1864+
background-image: url('/img/hero-pattern.svg');
1865+
}
1866+
1867+
.bg-\[url\(\'\'\)\] {
1868+
background-image: url('');
1869+
}
1870+
1871+
.bg-\[url\(\'https\:\/\/docegeracao\.com\.br\/wp-content\/uploads\/2019\/06\/bg-whatsapp\.jpg\'\)\] {
1872+
background-image: url('https://docegeracao.com.br/wp-content/uploads/2019/06/bg-whatsapp.jpg');
1873+
}
1874+
18911875
.decoration-slice {
18921876
-webkit-box-decoration-break: slice;
18931877
box-decoration-break: slice;
@@ -2696,18 +2680,10 @@ video {
26962680
}
26972681

26982682
@media (min-width: 768px) {
2699-
.md\:fixed {
2700-
position: fixed;
2701-
}
2702-
27032683
.md\:absolute {
27042684
position: absolute;
27052685
}
27062686

2707-
.md\:sticky {
2708-
position: sticky;
2709-
}
2710-
27112687
.md\:m-10 {
27122688
margin: 2.5rem;
27132689
}
@@ -2724,10 +2700,6 @@ video {
27242700
height: 700px;
27252701
}
27262702

2727-
.md\:h-full {
2728-
height: 100%;
2729-
}
2730-
27312703
.md\:w-\[430px\] {
27322704
width: 430px;
27332705
}

calls.html

+1-7
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,9 @@
99
type="image/x-icon">
1010
<!-- tailwind css -->
1111
<link rel="stylesheet" href="assests/css/styles.css">
12-
<style>
13-
body {
14-
background-color: #276556;
15-
background-image: url('https://docegeracao.com.br/wp-content/uploads/2019/06/bg-whatsapp.jpg');
16-
}
17-
</style>
1812
</head>
1913

20-
<body class="h-screen w-screen overflow-hidden">
14+
<body class="h-screen w-screen overflow-hidden bg-hero-pattern bg-emerald-800">
2115
<main class="h-screen md:flex md:justify-center md:m-10">
2216

2317
<div class="flex-col">

index.html

+1-7
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,9 @@
99
type="image/x-icon">
1010
<!-- tailwind css -->
1111
<link rel="stylesheet" href="assests/css/styles.css">
12-
<style>
13-
body {
14-
background-color: #276556;
15-
background-image: url('https://docegeracao.com.br/wp-content/uploads/2019/06/bg-whatsapp.jpg');
16-
}
17-
</style>
1812
</head>
1913

20-
<body class="h-screen w-screen overflow-hidden">
14+
<body class="h-screen w-screen overflow-hidden bg-hero-pattern bg-emerald-800">
2115
<main class="h-screen md:flex md:justify-center md:mt-10">
2216

2317
<div class="flex-col">

status.html

+2-7
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,10 @@
99
type="image/x-icon">
1010
<!-- tailwind css -->
1111
<link rel="stylesheet" href="assests/css/styles.css">
12-
<style>
13-
body {
14-
background-color: #276556;
15-
background-image: url('https://docegeracao.com.br/wp-content/uploads/2019/06/bg-whatsapp.jpg');
16-
}
17-
</style>
12+
1813
</head>
1914

20-
<body class="h-screen w-screen overflow-hidden">
15+
<body class="h-screen w-screen overflow-hidden bg-[url('https://docegeracao.com.br/wp-content/uploads/2019/06/bg-whatsapp.jpg')] bg-emerald-800">
2116
<main class="h-screen md:flex md:justify-center md:m-10">
2217

2318
<div class="flex-col">

tailwind.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
module.exports = {
33
content: ["./**/*.{html,js}"],
44
theme: {
5-
extend: {},
5+
extend: {
6+
backgroundImage: {
7+
'hero-pattern': "url('https://docegeracao.com.br/wp-content/uploads/2019/06/bg-whatsapp.jpg')",
8+
}
9+
},
610
},
711
plugins: [],
812
}

0 commit comments

Comments
 (0)