Skip to content
Snippets Groups Projects
style.css 606 B
Newer Older
body {
  background-image: url("background.png");
  font-family: 'Open Sans', sans-serif;
  color: #19222a;
  text-align: center;
  margin: 0;
}

  font-size: 25px;
  margin: 25px;
  padding: 5px;
}

.navigation {
  width: 700px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.navigation a {
  display: block;
Lukáš Paukert's avatar
Lukáš Paukert committed
  background-color: #ffffff;
  text-decoration: none;
  padding: 10px;
}

.navigation a:hover {
Lukáš Paukert's avatar
Lukáš Paukert committed
  background-color: #dcdcdc;
}

.navigation > li > a {
  border-radius: 5px;
  margin-top: 3px;

.navigation > .itemselected > a {
  color: #ffffff;
  background-color: #0088cc;
}