mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 04:29:21 +00:00
47 lines
566 B
CSS
47 lines
566 B
CSS
/**
|
|
* Global CSS rules
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
/**
|
|
* <a> elements
|
|
*/
|
|
a, .cursor-pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/**
|
|
* <a> like elements
|
|
*/
|
|
.a {
|
|
cursor: pointer;
|
|
outline: none;
|
|
text-decoration: none;
|
|
color: #3c8dbc;
|
|
}
|
|
|
|
.a:focus, .a:hover {
|
|
color: #72afd2;
|
|
}
|
|
|
|
.cursor-pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/**
|
|
* Sceditor iframe
|
|
*/
|
|
.sceditor-iframe-body {
|
|
padding: 5px;
|
|
padding-bottom: 0px;
|
|
}
|
|
|
|
/**
|
|
* Adapt menu bar to small screens
|
|
*/
|
|
@media screen and (max-width: 767px) {
|
|
#pageTarget {
|
|
margin-top: 50px;
|
|
}
|
|
} |