Skip to content

Styling

(Optional)

You can put the CSS statements given below right inside a <style>...</style>-tag and put it in hooks/header-extras.php. Or you can create a new .css-file, put the content there, save it and include this file as -tag in hooks/header-extras.php .

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
.indicator {
    border-bottom: 1px solid gray !important;
}
.indicator-loading {
    border-bottom: 1px solid white !important;
    filter: blur(1px);
}
.autorefresh-on {
    border-bottom-color: silver;
    background-color: rgba(128,128,128,0.2);
}
.autorefresh-off {
    filter: blur(1px);
}