Giter Site home page Giter Site logo

Comments (3)

kylestetz avatar kylestetz commented on May 4, 2024

I totally understand & I'm happy to share. First thing's first: that whole site is just a branch of the CLNDR project which you can view/download here: https://github.com/kylestetz/CLNDR/tree/gh-pages

The css for that calendar is here:
https://github.com/kylestetz/CLNDR/blob/gh-pages/css/full-clndr.less

The template for that calendar is here:
https://github.com/kylestetz/CLNDR/blob/gh-pages/index.html#L56

As a side note, I definitely encourage everyone to learn LESS or SASS because it makes tasks like this one a lot simpler. I won't rewrite it for you in vanilla CSS, but I can give you an overview of the main ideas...

You can use the exact same template I used; just make .clndr-grid and .event-listing width: 100%; (which will put the event listing below the calendar). .days-of-the-week and .days are just width: 100%; and then the individual day blocks can be written out this way:

.day, .empty {
  float: left;
  width: 14.2857%;
  height: 66px; /* this is probably a little large for your needs */
  padding: 24px 0; /* ditto */
  border-bottom: 2px white solid;
  text-align: center;
}

To get that underline under the days that have events, we're looking for the .day-number class within .day classes that have an .event modifier class:

.day.event .day-number {
  padding-bottom: 4px;
  border-bottom: 2px solid #color;
}

That's enough to get you started... But perhaps this is a good opportunity to learn LESS! Ha. Let me know if you have any other questions.

from clndr.

DaAwesomeP avatar DaAwesomeP commented on May 4, 2024

I took a loom at LESS and it is must easier. (Variables?) It's too bad the rest of the site is written in CSS. I got it converted correctly and I got everything sized, colored, and aligned. Thanks for the tips!

from clndr.

sylouuu avatar sylouuu commented on May 4, 2024

A CSS file is a valid LESS file. Then, at first, rename .css to .less and compile. After that, refactor then content in LESS.

from clndr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.