skip to Main Content

Customizing BulmaCSS colors with CSS

After reading the documentation, I still don't understand why I can't set the primary color with CSS like this: <!DOCTYPE html> <!-- Force the light theme: --> <html data-theme="light"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Hello Bulma!</title> <link rel="stylesheet"…

VIEW QUESTION

Css – Ccenter text in a card-header in Bulma

Using bulma makes it easy to position text - usually. I was not able to place the card-header attribute centered. My Try: <link href="https://cdnjs.cloudflare.com/ajax/libs/bulma/1.0.1/css/bulma.min.css" rel="stylesheet"/> <div class="columns mt-3"> <div class="column is-3 ml-3" style="display: flex;"> <div class="card has-background-warning-light"> <div class="card-header"> <p…

VIEW QUESTION

Bulma CSS, clear button in input search text field

I have a search text field like this one: <div class="field"> <p class="control has-icons-left has-icons-right"> <input class="input is-normal is-rounded" type="text" placeholder="Search..."> <span class="icon is-small is-left"> <i class="fa-solid fa-filter"></i> </span> </p> </div> I want to add a clear button on it,…

VIEW QUESTION
Back To Top
Search