mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
34 lines
372 B
CSS
34 lines
372 B
CSS
/**
|
|
* Global CSS rules
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
/**
|
|
* <a> elements
|
|
*/
|
|
a {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/**
|
|
* <a> like elements
|
|
*/
|
|
.a {
|
|
cursor: pointer;
|
|
outline: none;
|
|
text-decoration: none;
|
|
color: #3c8dbc;
|
|
}
|
|
|
|
.a:focus, .a:hover {
|
|
color: #72afd2;
|
|
}
|
|
|
|
/**
|
|
* Sceditor iframe
|
|
*/
|
|
.sceditor-iframe-body {
|
|
padding: 5px;
|
|
padding-bottom: 0px;
|
|
} |