updating disciplemaking-tw
This commit is contained in:
parent
51af157409
commit
c828b31653
|
@ -1511,6 +1511,10 @@ select {
|
|||
margin-top: 0.75rem;
|
||||
}
|
||||
|
||||
.mt-24 {
|
||||
margin-top: 6rem;
|
||||
}
|
||||
|
||||
.-mr-2 {
|
||||
margin-right: -0.5rem;
|
||||
}
|
||||
|
@ -1623,6 +1627,14 @@ select {
|
|||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.mb-4 {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.mb-8 {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.block {
|
||||
display: block;
|
||||
}
|
||||
|
@ -1639,6 +1651,10 @@ select {
|
|||
display: flex;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
@ -1699,6 +1715,26 @@ select {
|
|||
height: 1000px;
|
||||
}
|
||||
|
||||
.h-28 {
|
||||
height: 7rem;
|
||||
}
|
||||
|
||||
.h-64 {
|
||||
height: 16rem;
|
||||
}
|
||||
|
||||
.h-60 {
|
||||
height: 15rem;
|
||||
}
|
||||
|
||||
.h-56 {
|
||||
height: 14rem;
|
||||
}
|
||||
|
||||
.h-6 {
|
||||
height: 1.5rem;
|
||||
}
|
||||
|
||||
.max-h-\[5rem\] {
|
||||
max-height: 5rem;
|
||||
}
|
||||
|
@ -1835,6 +1871,10 @@ select {
|
|||
columns: 1;
|
||||
}
|
||||
|
||||
.grid-cols-1 {
|
||||
grid-template-columns: repeat(1, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.flex-row {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
@ -1859,6 +1899,30 @@ select {
|
|||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.gap-4 {
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.gap-2 {
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.gap-1 {
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.gap-8 {
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.gap-14 {
|
||||
gap: 3.5rem;
|
||||
}
|
||||
|
||||
.gap-12 {
|
||||
gap: 3rem;
|
||||
}
|
||||
|
||||
.space-y-10 > :not([hidden]) ~ :not([hidden]) {
|
||||
--tw-space-y-reverse: 0;
|
||||
margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
|
||||
|
@ -1929,6 +1993,10 @@ select {
|
|||
border-radius: 0.375rem !important;
|
||||
}
|
||||
|
||||
.rounded-sm {
|
||||
border-radius: 0.125rem;
|
||||
}
|
||||
|
||||
.rounded-b-lg {
|
||||
border-bottom-right-radius: 0.5rem;
|
||||
border-bottom-left-radius: 0.5rem;
|
||||
|
@ -1975,6 +2043,11 @@ select {
|
|||
border-color: rgba(var(--color-primary-500), var(--tw-border-opacity));
|
||||
}
|
||||
|
||||
.border-primary-600 {
|
||||
--tw-border-opacity: 1;
|
||||
border-color: rgba(var(--color-primary-600), var(--tw-border-opacity));
|
||||
}
|
||||
|
||||
.bg-neutral-100\/50 {
|
||||
background-color: rgba(var(--color-neutral-100), 0.5);
|
||||
}
|
||||
|
@ -2033,6 +2106,10 @@ select {
|
|||
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
||||
}
|
||||
|
||||
.bg-none {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.from-neutral-100 {
|
||||
--tw-gradient-from: rgba(var(--color-neutral-100), 1);
|
||||
--tw-gradient-to: rgba(var(--color-neutral-100), 0);
|
||||
|
@ -2051,6 +2128,24 @@ select {
|
|||
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
||||
}
|
||||
|
||||
.from-secondary-500 {
|
||||
--tw-gradient-from: rgba(var(--color-secondary-500), 1);
|
||||
--tw-gradient-to: rgba(var(--color-secondary-500), 0);
|
||||
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
||||
}
|
||||
|
||||
.from-primary-700 {
|
||||
--tw-gradient-from: rgba(var(--color-primary-700), 1);
|
||||
--tw-gradient-to: rgba(var(--color-primary-700), 0);
|
||||
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
||||
}
|
||||
|
||||
.from-secondary-700 {
|
||||
--tw-gradient-from: rgba(var(--color-secondary-700), 1);
|
||||
--tw-gradient-to: rgba(var(--color-secondary-700), 0);
|
||||
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
||||
}
|
||||
|
||||
.to-transparent {
|
||||
--tw-gradient-to: transparent;
|
||||
}
|
||||
|
@ -3688,6 +3783,10 @@ body:has(#menu-controller:checked) {
|
|||
columns: 1;
|
||||
}
|
||||
|
||||
.sm\:grid-cols-1 {
|
||||
grid-template-columns: repeat(1, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.sm\:flex-row {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
@ -3800,6 +3899,10 @@ body:has(#menu-controller:checked) {
|
|||
columns: 2;
|
||||
}
|
||||
|
||||
.md\:grid-cols-2 {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.md\:justify-start {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
@ -3910,6 +4013,26 @@ body:has(#menu-controller:checked) {
|
|||
columns: 4;
|
||||
}
|
||||
|
||||
.lg\:columns-md {
|
||||
-moz-columns: 28rem;
|
||||
columns: 28rem;
|
||||
}
|
||||
|
||||
.lg\:columns-sm {
|
||||
-moz-columns: 24rem;
|
||||
columns: 24rem;
|
||||
}
|
||||
|
||||
.lg\:columns-lg {
|
||||
-moz-columns: 32rem;
|
||||
columns: 32rem;
|
||||
}
|
||||
|
||||
.lg\:columns-xl {
|
||||
-moz-columns: 36rem;
|
||||
columns: 36rem;
|
||||
}
|
||||
|
||||
.lg\:grid-flow-col-dense {
|
||||
grid-auto-flow: column dense;
|
||||
}
|
||||
|
@ -3918,6 +4041,10 @@ body:has(#menu-controller:checked) {
|
|||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.lg\:grid-cols-4 {
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.lg\:flex-row {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@ Sign up for Mission Trip!
|
|||
|
||||
## Our Vision
|
||||
Our vision is to change the world from the heart of America by providing disciple making opportunities that serve communities where student ministries are limited.
|
||||
|
||||
## Our Mission
|
||||
We do that by, connecting teens with the truth of Jesus Christ…teaching and equipping them to live out the Great Commission.
|
||||
|
||||
|
|
|
@ -1,37 +1,40 @@
|
|||
<h2>Disciplemaking</h2>
|
||||
TFC’s core value is to follow the example of Jesus whose strategy of disciplemaking allowed Him to minister to all levels of spiritual interest at all times.
|
||||
<div class="mt-20">
|
||||
<h1>Disciplemaking</h1>
|
||||
<div class="mb-8">TFC’s core value is to follow the example of Jesus whose strategy of disciplemaking allowed Him to minister to all levels of spiritual interest at all times. These are those levels and where we work to reach teens at those levels. Everything we do is built around a desire to impact lives at each of these levels and help teenagers move forward through them.</div>
|
||||
|
||||
<div class="w-full columns-1 lg:columns-4 md:columns-2 sm:columns-1">
|
||||
<div class="p-2">
|
||||
<h2>Lost and Seeking</h2>
|
||||
<ul>
|
||||
<li>The World</li>
|
||||
<li>Outreach</li>
|
||||
<li>Relationship Building</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="p-2">
|
||||
<h2>Come and Grow</h2>
|
||||
<ul>
|
||||
<li>Growing Believers</li>
|
||||
<li>Building Faith</li>
|
||||
<li>Jesus Started Here</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="p-2">
|
||||
<h2>Come and Follow</h2>
|
||||
<ul>
|
||||
<li>Workers</li>
|
||||
<li>Equipping</li>
|
||||
<li>Jesus Invited Some</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="p-2">
|
||||
<h2>Come and Go</h2>
|
||||
<ul>
|
||||
<li>Leadership</li>
|
||||
<li>Multiplication</li>
|
||||
<li>Jesus Sent Some</li>
|
||||
</ul>
|
||||
<div class="m-4 w-full grid grid-cols-1 gap-12 lg:grid-cols-4 md:grid-cols-2 sm:grid-cols-1">
|
||||
<div class="p-2">
|
||||
<div class="text-xl font-extrabold">Lost and Seeking</div>
|
||||
<ul>
|
||||
<li>The World</li>
|
||||
<li>Outreach</li>
|
||||
<li>Relationship Building</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="p-2">
|
||||
<div class="text-xl font-extrabold">Come and Grow</div>
|
||||
<ul>
|
||||
<li>Growing Believers</li>
|
||||
<li>Building Faith</li>
|
||||
<li>Jesus Started Here</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="p-2">
|
||||
<div class="text-xl font-extrabold">Come and Follow</div>
|
||||
<ul>
|
||||
<li>Workers</li>
|
||||
<li>Equipping</li>
|
||||
<li>Jesus Invited Some</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="p-2">
|
||||
<div class="text-xl font-extrabold">Come and Go</div>
|
||||
<ul>
|
||||
<li>Leadership</li>
|
||||
<li>Multiplication</li>
|
||||
<li>Jesus Sent Some</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue