iptv-stream-web/static/css/reset.css

16 lines
324 B
CSS

/* Reset and normalize styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Base body styles */
body {
font-family: var(--font-family-primary);
background: var(--bg-darkest);
color: var(--text-primary);
height: 100vh;
overflow: hidden;
position: relative;
}