ComunicWeb/assets/css/common/global.css

47 lines
566 B
CSS
Raw Normal View History

2017-02-24 08:57:27 +00:00
/**
* Global CSS rules
*
* @author Pierre HUBERT
*/
/**
* <a> elements
*/
2019-05-11 14:43:55 +00:00
a, .cursor-pointer {
2017-02-24 08:57:27 +00:00
cursor: pointer;
2018-05-03 20:44:22 +00:00
}
/**
* <a> like elements
*/
.a {
cursor: pointer;
outline: none;
text-decoration: none;
color: #3c8dbc;
}
.a:focus, .a:hover {
color: #72afd2;
2019-01-10 15:28:59 +00:00
}
2019-02-23 18:08:34 +00:00
.cursor-pointer {
cursor: pointer;
}
2019-01-10 15:28:59 +00:00
/**
* Sceditor iframe
*/
.sceditor-iframe-body {
padding: 5px;
padding-bottom: 0px;
2019-05-16 15:38:10 +00:00
}
/**
* Adapt menu bar to small screens
*/
@media screen and (max-width: 767px) {
#pageTarget {
margin-top: 50px;
}
2017-02-24 08:57:27 +00:00
}