mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-17 01:18:31 +01:00
22 lines
323 B
SCSS
22 lines
323 B
SCSS
|
/**
|
||
|
* Alert styles
|
||
|
*
|
||
|
* @author n1474335 [n1474335@gmail.com]
|
||
|
* @copyright Crown Copyright 2017
|
||
|
* @license Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#alert {
|
||
|
position: fixed;
|
||
|
width: 30%;
|
||
|
margin: 30px auto;
|
||
|
top: 10px;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
z-index: 2000;
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#alert a {
|
||
|
text-decoration: underline;
|
||
|
}
|