16 lines
184 B
CSS
16 lines
184 B
CSS
* {
|
|
font: Sans-Serif;
|
|
}
|
|
body {
|
|
background: #fbf1d7;
|
|
}
|
|
a {
|
|
background: #83c5b8;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
background: #fe8019;
|
|
text-decoration: underline;
|
|
}
|
|
|