Skip to content

Commit 3b37378

Browse files
committed
v3
1 parent 8eda21e commit 3b37378

File tree

92 files changed

+10554
-2327
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+10554
-2327
lines changed

public/css/custom.css

Lines changed: 153 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,48 @@ h2 {
6464
font-weight:bold;
6565
}
6666

67+
/* MARKDOWN CONTENT */
68+
.markdown_content h1 {
69+
font-size: 17px;
70+
text-transform: uppercase;
71+
text-align:left;
72+
color:black;
73+
font-weight:bold;
74+
padding:0px 0px 8px 0px;
75+
margin:0px;
76+
}
77+
78+
.markdown_content h2 {
79+
font-size: 16px;
80+
text-transform: uppercase;
81+
text-align:left;
82+
color: #2c3e50;
83+
font-weight:bold;
84+
padding:0px 0px 5px 0px;
85+
margin:0px;
86+
}
87+
88+
.markdown_content p {
89+
margin: 0px 0px 5px 0px;
90+
}
91+
92+
.markdown_content pre {
93+
padding:10px;
94+
border:solid 1px #ced4da;
95+
background-color:#fafcfe;
96+
border-radius:4px;
97+
/*color:#6c757d;*/
98+
font-size:95%;
99+
}
100+
101+
102+
103+
104+
105+
106+
107+
108+
67109
.exemple {
68110
background-color: #eef0f2;
69111
padding:10px;
@@ -114,6 +156,7 @@ h2 {
114156

115157
.card:hover {
116158
background-color: #f3f5f7 !important;
159+
border:1px dashed #c0c3c6 !important;
117160
}
118161

119162
.card h2 {
@@ -217,18 +260,7 @@ h3 {
217260
border-radius:5px;
218261
}
219262

220-
.consignes p {
221-
margin: 0px 0px 10px 0px;
222-
}
223263

224-
.consignes pre {
225-
padding:10px;
226-
border:solid 1px #ced4da;
227-
background-color:#fafcfe;
228-
border-radius:4px;
229-
color:#6c757d;
230-
font-size:95%;
231-
}
232264

233265

234266

@@ -700,9 +732,6 @@ svg {
700732

701733

702734

703-
704-
705-
706735
.badge-warning {
707736
color: gray;
708737
background-color: #e0edf9;
@@ -724,3 +753,113 @@ svg {
724753
background-color: #f8f9fa;
725754
border: 0;
726755
}
756+
757+
758+
759+
/* ==================== */
760+
761+
.cellule {
762+
margin: 5px 0px 5px 0px;
763+
}
764+
765+
.cellule_content {
766+
padding: 8px;
767+
border: 1px solid #CED4DA;
768+
border-radius:4px;
769+
background-color:white;
770+
overflow: hidden;
771+
resize: none;
772+
font-family: 'Latin Modern Roman', serif;
773+
font-size:17px;
774+
}
775+
776+
.cellule_content pre code {
777+
font-size:15px;
778+
}
779+
780+
.cellule_marked {
781+
background-color:#fafafa;
782+
}
783+
784+
.control_bouton {
785+
display:inline-block;
786+
width:20px;
787+
text-align:center;
788+
cursor:pointer;
789+
border-radius:2px;
790+
opacity:0.2;
791+
}
792+
793+
.control_bouton:hover {
794+
background-color:#e2e6ea;
795+
opacity:0.8;
796+
}
797+
798+
.control_bouton_delete {
799+
display:inline-block;
800+
width:20px;
801+
text-align:center;
802+
cursor:pointer;
803+
border-radius:2px;
804+
opacity:0.4;
805+
color: #e3342f;
806+
}
807+
808+
.control_bouton_delete:hover {
809+
background-color:#e2e6ea;
810+
opacity:1;
811+
}
812+
813+
.control_bouton_cancel {
814+
display:inline-block;
815+
width:20px;
816+
text-align:center;
817+
cursor:pointer;
818+
border-radius:2px;
819+
opacity:0.2;
820+
}
821+
822+
.control_bouton_cancel:hover {
823+
background-color:#e2e6ea;
824+
opacity:0.8;
825+
}
826+
827+
.ace_editor {
828+
border-radius:4px;
829+
}
830+
831+
832+
.markedarea_icon {
833+
position: absolute;
834+
left:0;
835+
top:0;
836+
width:100%;
837+
height:100%;
838+
z-index:1000;
839+
}
840+
841+
.markedarea_icon i {
842+
position: absolute;
843+
top: 50%;
844+
left: 50%;
845+
-ms-transform: translate(-50%, -50%);
846+
transform: translate(-50%, -50%);
847+
display:none;
848+
}
849+
850+
.markedarea_icon:hover {
851+
cursor:text;
852+
}
853+
854+
.markedarea_icon:hover i {
855+
display:inline;
856+
}
857+
858+
.cellule_marked pre {
859+
display:block;
860+
border:solid 1px #CED4DA;
861+
background-color:#F8FAFC;
862+
border-radius:4px;
863+
}
864+
865+
/* ==================== */

public/css/easymde-custom.css

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.EasyMDEContainer .CodeMirror {
2+
box-sizing: border-box;
3+
height: auto;
4+
border: 1px solid #dae0e5;
5+
border-radius: 4px;
6+
padding: 10px;
7+
font: inherit;
8+
z-index: 0;
9+
word-wrap: break-word;
10+
margin-top: 2px;
11+
}
12+
13+
.editor-toolbar {
14+
position: relative;
15+
-webkit-user-select: none;
16+
-moz-user-select: none;
17+
-ms-user-select: none;
18+
-o-user-select: none;
19+
user-select: none;
20+
padding: 4px;
21+
border: 1px solid #dae0e5;
22+
border-radius: 4px;
23+
background-color: none;;
24+
}
25+
26+
.editor-toolbar button.table {
27+
width:30px !important;
28+
}
29+
30+
.editor-toolbar button.active, .editor-toolbar button:hover {
31+
background: white;
32+
border-color: #dae0e5;
33+
border-radius: 4px;
34+
}
35+
36+
.editor-preview pre {
37+
display:block;
38+
border:solid 1px #CED4DA;
39+
background-color:#F8FAFC;
40+
border-radius:4px;
41+
padding:10px;
42+
}

0 commit comments

Comments
 (0)