-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (77 loc) · 1.72 KB
/
styles.css
File metadata and controls
92 lines (77 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#mindMap ul {
list-style: none;
margin: 0;
padding: 0;
}
#mindMap li {
margin-right: 10px;
margin-bottom: 5px;
float: left;
padding: 5px;
color: white;
}
#mindMap p {
font-size: 25px;
font-weight: 700;
}
body {
margin: 50px 200px;
font-family: "Open Sans", sans-serif;
}
[contenteditable="true"]:focus {
outline: none;
}
input {
height: 50px;
font-size: 25px;
border: none;
width: 100%;
}
#fileInput {
opacity: 0;
position: absolute;
}
.fileInputDiv {
position: relative;
width: 300px;
height: 80px;
background-color: #f6f6f6;
display: flex;
align-items: center; /* Centrage vertical */
justify-content: center;
border: 4px solid #a8a8a8;
border-radius: 10px;
}
header {
display: flex;
justify-content: space-between;
}
.fileInputDiv p {
margin: 0;
}
.input-color {
max-width: 500px;
display: flex;
}
.nom-niveau {
max-width: 500px;
}
.nom-niveau {
display: flex;
justify-content: space-between;
}
img {
border: 2px solid black;
margin-top: 100px;
}
#mindMap .niveau-0 { background-color: #34FF35; }
#mindMap .niveau-1 { background-color: #34FF35; }
#mindMap .niveau-2 { background-color: #FF2C2C; }
#mindMap .niveau-3 { background-color: #1DFFE9; }
#mindMap .niveau-4 { background-color: #FF861D; }
#mindMap .niveau-5 { background-color: #1D7CFF; }
#mindMap .niveau-6 { background-color: #5f9ea0; }
#mindMap .niveau-7 { background-color: #800080; }
#mindMap .niveau-8 { background-color: #ffff00; }
#mindMap .niveau-9 { background-color: #ff1493; }
#mindMap .niveau-10 { background-color: #6495ed; }