mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
23 lines
298 B
CSS
23 lines
298 B
CSS
|
/**
|
||
|
* Incognito mode stylesheet
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
#incognito-block {
|
||
|
position: fixed;
|
||
|
left: 10px;
|
||
|
bottom: 54px;
|
||
|
text-align: center;
|
||
|
background-color: #001F3F;
|
||
|
padding: 10px;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
#incognito-block i {
|
||
|
font-size: 200%;
|
||
|
}
|
||
|
|
||
|
#incognito-block span {
|
||
|
display: block;
|
||
|
}
|