Hi,
Tempera uses only circles as list bullets, but applies different indentation for nested lists. This can be seen in the theme’s demo: https://demos.cryoutcreations.eu/wordpress/tempera/typograpy/
You can restore the default browser list bullets with some CSS:
body .entry-content ul li {
list-style-type: disc;
}
body .entry-content ul ul li {
list-style-type: circle;
}
body .entry-content ul ul ul li {
list-style-type: square;
}