klandr-server/static/style.css

17 lines
281 B
CSS
Raw Normal View History

2016-09-17 02:08:42 +00:00
body {
font-family: monospace;
background-color: #fff;
color: #000;
}
a:link, a:visited {
2016-09-19 13:57:15 +00:00
color: #0055ce;
2016-09-17 02:08:42 +00:00
transition-duration: 0.3s;
2016-09-19 13:57:15 +00:00
text-decoration: none;
2016-09-17 02:08:42 +00:00
}
a:hover, a:active {
2016-09-19 13:57:15 +00:00
color: #3385ff;
2016-09-17 02:08:42 +00:00
transition-duration: 0.3s;
2016-09-19 13:57:15 +00:00
}