1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* Structure */
- h1 {
- user-select: none;
- position: fixed;
- height: -0.2em;
- width: 100%;
- }
- div.large-3, div.large-9 {
- margin-top: 7em;
- }
- h1 a:before {
- margin-left: 1em;
- margin-right: -1em;
- display: block;
- float: left;
- width: 25%;
- }
- /* Navigateurs */
- h1 {
- -moz-user-select: none;
- -webkit-user-select: none;
- }
- /* Contenus */
- h1 a:before {
- content: "\\_o<";
- font-family: monospace;
- }
- h1:hover a:before {
- content: "\\_x<";
- }
- /* Couleurs */
- h1 a {
- color: #0086A9;
- font-weight: bold;
- }
- h1 a:before {
- color: #FF6600;
- font-weight: normal;
- }
|