mirror of
https://github.com/m5stack/M5Stack_MicroPython.git
synced 2026-05-20 10:14:44 -07:00
36 lines
457 B
CSS
36 lines
457 B
CSS
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
background-color: white;
|
|
font-family: Verdana, sans-serif;
|
|
font-size: 100%;
|
|
}
|
|
h1 {
|
|
font-size: 200%;
|
|
color: navy;
|
|
text-align: center;
|
|
}
|
|
h2 {
|
|
font-size: 150%;
|
|
color: red;
|
|
padding-left: 15px;
|
|
}
|
|
p,ul,li,td {
|
|
color: black;
|
|
}
|
|
a:link {
|
|
color: green;
|
|
text-decoration: underline;
|
|
}
|
|
a:visited {
|
|
color: gray;
|
|
}
|
|
a:hover {
|
|
color: red;
|
|
text-decoration: none;
|
|
}
|
|
a:active, a:focus {
|
|
color: red;
|
|
} |