| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /**
- * Styles généraux
- */
- /**
- * Grosse font pour le vidéo-proj
- */
- body {
- font-size: 130%;
- }
- #left-panel,
- #right-panel {
- font-family: Arial, Helvetica;
- position: absolute;
- top: 0;
- bottom: 0;
- }
- #left-panel {
- background: #fff;
- border-right: 1px solid #aaa;
- right: 40%;
- left: 0;
- }
- #right-panel {
- background: #f4f4f4;
- left: 60%;
- right: 0;
- }
- .panel-inner {
- padding: 10px;
- }
- nav ul {
- padding-left: 0;
- }
- nav ul li {
- display: inline-block;
- }
- a {
- text-decoration: none;
- color: #59d;
- }
- button a {
- color: #fff;
- }
- button.active {
- background: #9ad;
- }
- #editor-js,#editor-html {
- /*display: none;*/
- position: absolute;
- top: 510px;
- }
- /**
- * Styles pour l'éditeur Ace
- */
- #editor {
- font-size: 90%;
- position: absolute;
- top: 110px;
- right: 0;
- bottom: 200px;
- left: 0;
- border-top: 1px solid #aaa;
- border-bottom: 1px solid #aaa;
- }
- .container {
- margin: 50px auto;
- background: #fff;
- border: 1px solid #ddd;
- padding: 30px;
- width: 96%;
- border-radius: 4px;
- box-sizing: border-box;
- /*max-width: 600px;*/
- }
- input[type="submit"],
- button {
- padding: 10px;
- color: white;
- border: none;
- border-radius: 3px;
- }
- .blue {
- background: #24d;
- }
- .red {
- background: #d42;
- }
- .green {
- background: #4d2;
- }
- select,
- input {
- border: 1px solid #ddd;
- padding: 8px;
- border-radius: 3px;
- }
- a,
- button {
- margin: 5px;
- box-sizing: border-box;
- }
- .bordure-flashy {
- border: 2px solid red;
- }
- /**
- * Styles communs pour les différents exemples
- */
- a.active {
- font-weight: bold;
- color: #48c;
- }
|