Cat-Printer/www/main.css
2021-09-08 11:35:04 +08:00

36 lines
552 B
CSS

body {
text-align: center;
margin: 0;
font-size: large;
font-family: 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
}
main.mainpage p {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
main.mainpage p a {
display: inline-block;
font-size: larger;
width: 10em;
}
a:link, a:visited {
color: blue;
}
a:hover, a:active {
color: darkblue;
}
main input[type="range"] {
width: 16em;
}
.reset_styles {
font-family: initial;
font-size: initial;
text-align: initial;
}