Published on

How To Make A Mini Schedule With Tailwind CSS From Scratch

Mini Schedule

What is Tailwind CSS?

Tailwind CSS is a utility-first CSS framework that focuses on creating personalized user interfaces quickly. It can gives you all the building blocks you are able to create personalized designs without having to fight to override irritating opinionated styles. Also, Tailwind CSS is a highly configurable, low-level CSS framework.

The description of Mini Schedule ui component

Why use Tailwind CSS to create a Mini Schedule ui component?

  • It can make the building process of Mini Schedule ui component faster and more easily.
  • Enables building complex responsive layouts and components freely.
  • Minimum lines of CSS code in Mini Schedule component file.

The preview of Mini Schedule ui component

Free download of the Mini Schedule's source code

The source code of Mini Schedule ui component

<style>
.date:after {
  content: "";
  position: absolute;
  border-top: 1px solid #e2e8f0;
  top: 12px;
  width: 150px;
}

.date:after {
  margin-left: 15px;
}
</style>
<div class="flex justify-center p-24 bg-gray-100">
  <div class="bg-white rounded-lg w-2/3 lg:w-1/2 xl:w-1/3 p-4 shadow">
    <div>
      <span class="text-gray-900 relative inline-block date uppercase font-medium tracking-widest">Wednesday 8</span>
      <div class="flex mb-2">
        <div class="w-2/12">
          <span class="text-sm text-gray-600 block">8:00a</span>
          <span class="text-sm text-gray-600 block">8:15a</span>
        </div>
        <div class="w-1/12">
          <span class="bg-blue-400 h-2 w-2 rounded-full block mt-2"></span>
        </div>
        <div class="w-9/12">
          <span class="text-sm font-semibold block">Morning Standup</span>
          <span class="text-sm">Zoom ID: 1134 11 1134</span>
        </div>
      </div>
      <div class="flex mb-4">
        <div class="w-2/12">
          <span class="text-sm text-gray-600 block">10:00a</span>
          <span class="text-sm text-gray-600 block">2:00p</span>
        </div>
        <div class="w-1/12">
          <span class="bg-red-400 h-2 w-2 rounded-full block mt-2"></span>
        </div>
        <div class="w-9/12">
          <span class="text-sm font-semibold block">Core Development</span>
          <span class="text-sm">Joey, Matt, CJ and Vlad</span>
        </div>
      </div>
      <div class="flex mb-4">
        <div class="w-2/12">
          <span class="text-sm text-gray-600 block">3:00p</span>
          <span class="text-sm text-gray-600 block">3:30p</span>
        </div>
        <div class="w-1/12">
          <span class="bg-indigo-600 h-2 w-2 rounded-full block mt-2"></span>
        </div>
        <div class="w-9/12">
          <span class="text-sm font-semibold block">Interview with Ed Harris</span>
        </div>
      </div>
    </div>
    <div>
      <span class="text-gray-900 relative inline-block date uppercase font-medium tracking-widest">Thursday 9</span>
      <div class="flex mb-2">
        <div class="w-2/12">
          <span class="text-sm text-gray-600 block">8:00a</span>
          <span class="text-sm text-gray-600 block">8:15a</span>
        </div>
        <div class="w-1/12">
          <span class="bg-blue-400 h-2 w-2 rounded-full block mt-2"></span>
        </div>
        <div class="w-9/12">
          <span class="text-sm font-semibold block">Morning Standup</span>
          <span class="text-sm">Zoom ID: 1134 11 1134</span>
        </div>
      </div>
      <div class="flex mb-4">
        <div class="w-2/12">
          <span class="text-sm text-gray-600 block">6:00p</span>
          <span class="text-sm text-gray-600 block">7:30p</span>
        </div>
        <div class="w-1/12">
          <span class="bg-yellow-400 h-2 w-2 rounded-full block mt-2"></span>
        </div>
        <div class="w-9/12">
          <span class="text-sm font-semibold block">Dinner with Mom</span>
        </div>
      </div>
    </div>
  </div>
</div>

How to create a Mini Schedule with Tailwind CSS?

Install tailwind css of verion 1.2.0

Use the link html tag to import the stylesheet of Tailwind CSS of the version 1.2.0

<link href=https://unpkg.com/[email protected]/dist/tailwind.min.css rel="stylesheet">

All the unility class needed to create a Mini Schedule component

  • flex
  • p-24
  • bg-gray-100
  • bg-white
  • w-2/3
  • lg:w-1/2
  • xl:w-1/3
  • p-4
  • text-gray-900
  • relative
  • inline-block
  • mb-2
  • w-2/12
  • text-sm
  • text-gray-600
  • block
  • w-1/12
  • bg-blue-400
  • h-2
  • w-2
  • mt-2
  • w-9/12
  • mb-4
  • bg-red-400
  • bg-indigo-600
  • bg-yellow-400

26 steps to create a Mini Schedule component with Tailwind CSS

  1. Use flex to create a block-level flex container.

  2. Control the padding on all sides of an element to 6rem using the p-24 utilities.

  3. Control the background color of an element to gray-100 using the bg-gray-100 utilities.

  4. Control the background color of an element to white using the bg-white utilities.

  5. Use w-2/3 to set an element to a fixed width(2/3).

  6. Use lg:w-1/2 to set an element to a fixed width(1/2) at only large screen sizes.

  7. Use xl:w-1/3 to set an element to a fixed width(1/3) at only extremely large screen sizes.

  8. Control the padding on all sides of an element to 1rem using the p-4 utilities.

  9. Control the text color of an element to gray-900 using the text-gray-900 utilities.

  10. Use relative to position an element according to the normal flow of the document.

  11. Use inline-block utilities to wrap the element to prevent the text inside from extending beyond its parent.

  12. Control the margin on bottom side of an element to 0.5rem using the mb-2 utilities.

  13. Use w-2/12 to set an element to a fixed width(2/12).

  14. Control the text color of an element to sm using the text-sm utilities.

  15. Control the text color of an element to gray-600 using the text-gray-600 utilities.

  16. Use inline utilities to put the element on its own line and fill its parent.

  17. Use w-1/12 to set an element to a fixed width(1/12).

  18. Control the background color of an element to blue-400 using the bg-blue-400 utilities.

  19. Use h-2 to set an element to a fixed height(0.5rem).

  20. Use w-2 to set an element to a fixed width(0.5rem).

  21. Control the margin on top side of an element to 0.5rem using the mt-2 utilities.

  22. Use w-9/12 to set an element to a fixed width(9/12).

  23. Control the margin on bottom side of an element to 1rem using the mb-4 utilities.

  24. Control the background color of an element to red-400 using the bg-red-400 utilities.

  25. Control the background color of an element to indigo-600 using the bg-indigo-600 utilities.

  26. Control the background color of an element to yellow-400 using the bg-yellow-400 utilities.

Conclusion

The above is a step-by-step tutorial on how to use Tailwind CSS to create a Mini Schedule components, learn and follow along to implement your own components.