Newer
Older
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
body ul {
margin: 0;
padding: 0;
list-style-type: none;
}
main {
background: url("../assets/images/wallpaper_binary.png");
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
main header {
width: 100%;
}
main header nav {
background-color: #fff1;
}
main header nav ul {
display: flex;
padding: 0;
margin: 0;
list-style-type: none;
}
main header nav ul li a {
display: flex;
padding: 10px 20px;
color: #b8b9c5;
font-weight: 500;
text-decoration: none;
}
main header nav ul li:hover, main header nav ul li.active {
background-color: #fff2;
}
main header nav ul li:hover a, main header nav ul li.active a {
color: white;
}
main #page-container {
background-color: white;
width: 1200px;
max-width: 100%;
flex: 1;
}
main #page-container #education-page h1 {
margin: 15px 40px 0;
font-size: 25px;
}
main #page-container #education-page .edu-philo {
margin: 15px 40px 15px 100px;
max-width: 800px;
font-style: italic;
}
main #page-container #education-page .title-banner {
display: flex;
justify-content: flex-end;
flex-direction: column;
height: 300px;
background-image: url("../assets/images/glitch_meta_level3.png");
background-size: cover;
background-repeat: no-repeat;
background-position: 0% 90%;
}
main #page-container #education-page .title-banner h2 {
color: white;
font-size: 2.5em;
margin: 40px;
text-shadow: 0 0 8px #000;
}
main #page-container #education-page .section-contents {
margin: 20px 40px 60px;
display: grid;
grid-template-columns: auto 1fr;
gap: 20px;
main #page-container #education-page .section-contents .full-row {
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
grid-column: 1/span 2;
}
main #page-container #education-page .section-contents .practical-infos {
grid-column: 2;
grid-row: 2;
display: flex;
flex-direction: column;
gap: 40px;
background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../assets/images/wallpaper_binary_light.png");
padding: 20px;
}
main #page-container #education-page .section-contents .practical-infos .info-item {
display: flex;
flex-direction: column;
background-color: white;
padding: 20px;
}
main #page-container #education-page .section-contents .practical-infos .info-item strong {
margin-bottom: 10px;
}
main #page-container #education-page .section-contents .practical-infos .info-item span,
main #page-container #education-page .section-contents .practical-infos .info-item a {
font-size: 14px;
text-decoration: none;
}
main #page-container #education-page .section-contents ul.learning-themes {
grid-column: 1;
grid-row: 2;
display: flex;
gap: 20px;
flex-wrap: wrap;
}
main #page-container #education-page .section-contents ul.learning-themes li.learning-theme {
display: grid;
grid-template-columns: auto 280px;
border-bottom: 1px solid #dde;
border-right: 1px solid #dde;
}
main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .img-wrapper {
grid-column: 1;
width: 130px;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .img-wrapper img {
position: absolute;
}
main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .right {
grid-column: 2;
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
}
main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .right strong {
display: block;
margin-bottom: 10px;
}
main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .right .comment {
font-size: 14px;
}
main #page-container #education-page .section-contents ul.learning-themes li.learning-theme .right ul {
font-size: 12px;
list-style-type: disc;
margin: 10px 0 0 20px;
display: flex;
flex-direction: column;
gap: 8px;
}
main #page-container #education-page .section-contents .infos-inscriptions {
display: flex;
gap: 40px;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups,
main #page-container #education-page .section-contents .infos-inscriptions .pricing {
background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../assets/images/wallpaper_binary_light.png");
padding: 20px;
display: flex;
flex-direction: column;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups > *,
main #page-container #education-page .section-contents .infos-inscriptions .pricing > * {
background-color: white;
margin: 0;
width: 100%;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups h3,
main #page-container #education-page .section-contents .infos-inscriptions .pricing h3 {
flex: 1;
padding: 20px 20px 10px;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups p,
main #page-container #education-page .section-contents .infos-inscriptions .pricing p {
main #page-container #education-page .section-contents .infos-inscriptions .groups .table-wrapper,
main #page-container #education-page .section-contents .infos-inscriptions .pricing .table-wrapper {
padding: 20px;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups .table-wrapper table,
main #page-container #education-page .section-contents .infos-inscriptions .pricing .table-wrapper table {
border: 1px solid #dde;
border-collapse: collapse;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups .table-wrapper table td,
main #page-container #education-page .section-contents .infos-inscriptions .pricing .table-wrapper table td {
border: 1px solid #dde;
padding: 10px 20px;