mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-26 01:36:17 -04:00
64 lines
1.1 KiB
CSS
Executable file
64 lines
1.1 KiB
CSS
Executable file
/**
|
|
* Banner area styles
|
|
*
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2017
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
#banner {
|
|
position: absolute;
|
|
height: 30px;
|
|
width: 100%;
|
|
line-height: 30px;
|
|
border-bottom: 1px solid var(--primary-border-colour);
|
|
color: var(--banner-font-colour);
|
|
background-color: var(--banner-bg-colour);
|
|
margin: 0;
|
|
}
|
|
|
|
#banner i {
|
|
vertical-align: middle;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
#banner a {
|
|
color: var(--banner-url-colour);
|
|
}
|
|
|
|
#options:focus {
|
|
background-color: #eef3ec;
|
|
border: solid black 2px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
#support:focus {
|
|
background-color: #eef3ec;
|
|
border: solid black 2px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
#notice:focus {
|
|
background-color: #eef3ec;
|
|
border: solid black 2px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
#banner .col a:focus {
|
|
background-color: #eef3ec;
|
|
border: solid black 2px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
#notice-wrapper #notice:focus {
|
|
background-color: #eef3ec;
|
|
border: solid black 2px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
#notice-wrapper {
|
|
text-align: center;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|