CyberChef/src/web/stylesheets/layout/_banner.css

65 lines
1.1 KiB
CSS
Raw Normal View History

/**
* 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);
2018-03-02 14:04:58 +00:00
margin: 0;
}
#banner i {
vertical-align: middle;
2017-07-03 15:18:47 +00:00
padding-right: 10px;
}
2019-03-20 10:23:09 +00:00
#banner a {
color: var(--banner-url-colour);
}
#options:focus {
2024-02-22 15:55:43 +00:00
background-color: #eef3ec;
border: solid black 2px;
2024-02-22 15:55:43 +00:00
border-radius: 4px;
}
#support:focus {
2024-02-22 15:55:43 +00:00
background-color: #eef3ec;
border: solid black 2px;
2024-02-22 15:55:43 +00:00
border-radius: 4px;
}
#notice:focus {
2024-02-22 15:55:43 +00:00
background-color: #eef3ec;
border: solid black 2px;
2024-02-22 15:55:43 +00:00
border-radius: 4px;
}
#banner .col a:focus {
2024-02-22 15:55:43 +00:00
background-color: #eef3ec;
border: solid black 2px;
2024-02-22 15:55:43 +00:00
border-radius: 4px;
}
#notice-wrapper #notice:focus {
2024-02-22 15:55:43 +00:00
background-color: #eef3ec;
border: solid black 2px;
2024-02-22 15:55:43 +00:00
border-radius: 4px;
}
#notice-wrapper {
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}