mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-10 13:13:34 +01:00
32052f214b
* *: source files should not be executable * *: make sure files have final newline * *: remove BOM from text files * translations: unify headers * *: fix typos * *: trim excess whitespace
32 lines
423 B
CSS
32 lines
423 B
CSS
#menu {
|
|
display: none;
|
|
}
|
|
|
|
#menu ul {
|
|
list-style-type: none;
|
|
margin: 0px auto;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: #08aad7;
|
|
}
|
|
|
|
#menu li {
|
|
float: left;
|
|
}
|
|
|
|
#menu li a {
|
|
display: block;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 16px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#menu li a.active {
|
|
background-color: #84c7b0;
|
|
}
|
|
|
|
#menu li a:hover {
|
|
background-color: #111111;
|
|
}
|