GithubHelp home page GithubHelp logo

Comments (5)

lukas-h avatar lukas-h commented on June 10, 2024 1

Sorry for not answering for a long time @lf-araujo

column width

It is using the grid system from materializecss.com http://materializecss.com/grid.html - Maybe you want to adjust the CSS classes for the default layout 's content div:

<div class="row">
          <div class="col s12 m8 offset-m2 l6 offset-l3">
            {{ content }}
          </div>
        </div>

You could change the classes from "col s12 m8 offset-m2 l6 offset-l3" to "col s12 m8 offset-m2 l8 offset-l2". That would be a quick fix. Otherwise you could try to edit the media queries in the materialize css file https://github.com/lukas-h/material-theme/tree/gh-pages/styles/mlz.

bullet point support

Looks like, there is support for ordered lists <ol></ol>, but not for unordered lists <ul></ul>.
You could write some css into the main.css file.
For example like this:

ul li{
list-style-type: disc;
}
ol li{
list-style-type: decimal;
}

https://css-tricks.com/almanac/properties/l/list-style/

from material-theme.

lf-araujo avatar lf-araujo commented on June 10, 2024

Thank you!

from material-theme.

lf-araujo avatar lf-araujo commented on June 10, 2024

Thanks again for the answer.

The solution you pointed out, Lukas, introduces a new problem. The blog post list now has bullet points if I add the above code into main.css.

Here is how it looks:

captura de tela de 2017-12-26 18-59-58

Do you have any idea on how to circumvent this?

from material-theme.

lukas-h avatar lukas-h commented on June 10, 2024

Is this issue still active? @lf-araujo
(Sorry for missing to answer)

from material-theme.

lf-araujo avatar lf-araujo commented on June 10, 2024

No it is not. Will close it. Thank you!

from material-theme.

Related Issues (10)

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.