30 lines
348 B
CSS
30 lines
348 B
CSS
body {
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
a, button {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Firefox not display the ugly dotted focus outlines on links */
|
|
button::-moz-focus-inner {
|
|
border: 0;
|
|
}
|
|
|
|
a:focus, button:focus, input:focus {
|
|
outline: none;
|
|
}
|