Newer
Older
body ul {
margin: 0;
padding: 0;
list-style-type: none;
}
text-decoration: none;
}
body a:hover {
body .grid-3 {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
body .bg-blue {
background-color: #4baabb;
main {
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
main header {
width: 100%;
}
main header nav {
display: flex;
align-items: center;
}
main header nav .home {
margin: 0 10px;
}
main header nav .home a {
display: flex;
align-items: center;
gap: 10px;
}
main header nav .home a img {
height: 40px;
width: auto;
}
main header nav .home a img.logo-text {
width: 120px;
height: auto;
main header nav ul {
display: flex;
padding: 0;
margin: 0;
list-style-type: none;
main header nav ul li:hover .submenu {
visibility: unset;
max-height: 1000px;
}
main header nav .burger {
display: none;
}
@media screen and (max-width: 560px) {
main header nav {
justify-content: space-between;
}
main header nav .burger {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-direction: column;
font-weight: bold;
border: 1px solid;
margin: 0 20px;
cursor: pointer;
border-radius: 100%;
}
main header nav ul {
display: none;
}
main header nav ul.responsive-show {
display: flex;
position: absolute;
right: 0;
max-width: 100vw;
min-width: 50vw;
background-color: white;
box-shadow: 0 4px 6px 2px #0000000a;
}
main header nav ul.responsive-show li.active a {
border: none;
}
main header nav ul.responsive-show li .submenu {
display: flex;
visibility: visible;
position: relative;
height: unset;
max-height: unset;
transition: max-height 0.6s;
top: unset;
left: unset;
margin-left: 20px;
}
main header nav ul.responsive-show li .submenu li a {
font-weight: 400;
color: #96a5ae;
}
}
main #page-container .page-header {
background-image: url("/assets/images/wallpaper_binary.png");
padding: 15px 40px 15px 100px;
margin: 0 auto;
}
main #page-container .page-header p * {
}
@media screen and (max-width: 560px) {
main #page-container .page-header h1 {
padding: 15px 20px 0;
}
main #page-container .page-header p {
padding: 15px;
}
}
main #page-container .page-contents-center {
width: 1300px;
max-width: 100%;
}
main #page-container #home-page {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 60px;
}
main #page-container #home-page .section-title {
padding: 10px;
margin: 0;
}
main #page-container #home-page .articles-displayer {
margin: 0 auto 40px;
display: grid;
grid-template-columns: 50px auto 50px;
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
}
main #page-container #home-page .articles-displayer .prev-btn,
main #page-container #home-page .articles-displayer .next-btn {
border: none;
background-image: url("/assets/images/wallpaper_binary.png");
}
main #page-container #home-page .articles-displayer .prev-btn.disabled,
main #page-container #home-page .articles-displayer .next-btn.disabled {
pointer-events: none;
}
main #page-container #home-page .articles-displayer .prev-btn.active,
main #page-container #home-page .articles-displayer .next-btn.active {
cursor: pointer;
color: #6b7880;
}
main #page-container #home-page .articles-displayer .prev-btn.active:hover,
main #page-container #home-page .articles-displayer .next-btn.active:hover {
color: #d4d9dd;
}
main #page-container #home-page .articles-displayer .next-btn.active::before {
content: " ";
border-style: solid;
border-width: 4px 4px 0 0;
width: 20px;
height: 20px;
transform: rotate(45deg);
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
position: relative;
}
main #page-container #home-page .articles-displayer .prev-btn.active::before {
content: " ";
border-style: solid;
border-width: 4px 4px 0 0;
width: 20px;
height: 20px;
transform: rotate(-135deg);
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
position: relative;
left: 8px;
}
main #page-container #home-page .articles-displayer article {
display: grid;
gap: 5px 20px;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto auto 1fr;
position: relative;
padding-left: 20px;
}
main #page-container #home-page .articles-displayer article .date {
grid-column: 1;
grid-row: 1;
text-align: right;
}
main #page-container #home-page .articles-displayer article .date span {
color: #6b7880;
font-style: italic;
font-size: 12px;
}
main #page-container #home-page .articles-displayer article .title {
grid-column: 1;
grid-row: 2;
}
main #page-container #home-page .articles-displayer article .title h3 {
margin: 0 0 10px;
}
main #page-container #home-page .articles-displayer article .subtitle {
grid-column: 1;
grid-row: 3;
font-style: italic;
font-size: 15px;
}
main #page-container #home-page .articles-displayer article .body {
grid-column: 1;
grid-row: 4;
min-height: 250px;
padding-bottom: 40px;
}
main #page-container #home-page .articles-displayer article .image-carousel {
grid-row: 1/span 4;
grid-column: 2;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
background-color: black;
position: relative;
}
main #page-container #home-page .articles-displayer article .image-carousel img {
position: absolute;
}
main #page-container #home-page .articles-displayer article .image-carousel .carousel-bullets {
position: absolute;
bottom: 0;
padding: 20px;
display: flex;
gap: 10px;
}
main #page-container #home-page .articles-displayer article .image-carousel .carousel-bullets .bullet {
cursor: pointer;
width: 8px;
height: 8px;
background-color: #6b7880;
border-radius: 100%;
box-shadow: 0 0 3px black;
}
main #page-container #home-page .articles-displayer article .image-carousel .carousel-bullets .bullet.active {
background-color: #d4d9dd;
}
main #page-container #home-page .articles-displayer article.article-placeholder {
}
main #page-container #home-page .articles-displayer article.article-placeholder * {
background-color: #d4d9dd;
}
main #page-container #home-page .articles-displayer article.article-placeholder .date {
height: 10px;
}
main #page-container #home-page .articles-displayer article.article-placeholder .title {
height: 40px;
}
main #page-container #home-page .articles-displayer article.article-placeholder .subtitle {
height: 30px;
}
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
@media screen and (max-width: 900px) {
main #page-container #home-page .articles-displayer {
grid-template-columns: 40px auto 40px;
}
main #page-container #home-page .articles-displayer article {
gap: 5px;
grid-template-columns: 1fr;
grid-template-rows: 300px auto auto auto 1fr;
padding: 0;
}
main #page-container #home-page .articles-displayer article .date {
grid-row: 2;
padding: 0 10px;
}
main #page-container #home-page .articles-displayer article .title {
grid-row: 3;
padding: 0 10px;
}
main #page-container #home-page .articles-displayer article .subtitle {
grid-row: 4;
padding: 0 10px;
}
main #page-container #home-page .articles-displayer article .body {
grid-row: 5;
padding: 0 10px 30px;
}
main #page-container #home-page .articles-displayer article .image-carousel {
grid-row: 1;
grid-column: 1;
}
main #page-container #home-page .articles-displayer article .image-carousel img {
max-height: 100%;
}
main #page-container #home-page .articles-displayer article .image-carousel .carousel-bullets {
gap: 15px;
}
main #page-container #home-page .articles-displayer article .image-carousel .carousel-bullets .bullet {
width: 12px;
height: 12px;
}
}
main #page-container #home-page .grid-3 {
gap: 30px;
}
main #page-container #home-page .grid-3 .theme-card {
display: flex;
flex-direction: column;
width: 100%;
cursor: pointer;
transition: transform 0.3s;
}
main #page-container #home-page .grid-3 .theme-card .card-img {
width: 100%;
height: 240px;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-direction: column;
position: relative;
}
main #page-container #home-page .grid-3 .theme-card .card-img img {
position: absolute;
min-width: 100%;
min-height: 100%;
}
main #page-container #home-page .grid-3 .theme-card .card-title h2 {
margin: 0;
text-align: center;
padding: 10px 20px;
color: #4baabb;
}
main #page-container #home-page .grid-3 .theme-card .card-description {
background-image: url("/assets/images/wallpaper_binary.png");
flex: 1;
padding: 20px 30px 30px;
}
main #page-container #home-page .grid-3 .theme-card .card-description p {
margin: 0;
color: #72e3f0;
text-align: center;
}
main #page-container #home-page .grid-3 .theme-card:hover {
transform: scale(1.03);
}
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
@media screen and (max-width: 900px) {
main #page-container #home-page .grid-3 {
grid-template-columns: 1fr;
gap: 40px;
}
main #page-container #home-page .grid-3 .theme-card {
transition: transform 0.3s;
}
main #page-container #home-page .grid-3 .theme-card .card-img {
height: 300px;
}
main #page-container #home-page .grid-3 .theme-card .card-img img {
min-width: unset;
height: 100%;
}
main #page-container #home-page .grid-3 .theme-card .card-title h2 {
padding: 5px 20px;
}
main #page-container #home-page .grid-3 .theme-card .card-description {
background-image: url("/assets/images/wallpaper_binary.png");
flex: 1;
padding: 10px 10px 20px;
}
main #page-container #home-page .grid-3 .theme-card .card-description p {
margin: 0;
color: #72e3f0;
text-align: center;
}
main #page-container #home-page .grid-3 .theme-card:hover {
transform: none;
}
}
@media screen and (max-width: 1300px) {
main #page-container #home-page .articles-displayer,
main #page-container #home-page .grid-3 {
padding: 0 20px;
}
main #page-container #home-page .section-title {
margin: 0 20px;
}
}
main #page-container #education-page h3.big {
font-size: 30px;
}
main #page-container #education-page .title-banner {
display: flex;
justify-content: flex-end;
flex-direction: column;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
main #page-container #education-page .title-banner.game-banner {
background-image: url("/assets/images/game_studio_banner.png");
}
main #page-container #education-page .title-banner.popu-banner {
background-image: url("/assets/images/popularization_banner.png");
main #page-container #education-page .title-banner h2 {
color: white;
font-size: 2.5em;
margin: 40px;
}
main #page-container #education-page .section-contents {
display: grid;
grid-template-columns: auto 1fr;
gap: 20px;
main #page-container #education-page .section-contents .full-row {
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: url("/assets/images/wallpaper_binary_light.png");
}
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;
}
main #page-container #education-page .section-contents .list-wrapper {
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes {
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme {
display: flex;
flex-direction: column;
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .title {
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme img {
width: 100%;
height: auto;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details {
width: 300px;
height: auto;
max-height: 0;
visibility: hidden;
z-index: 1;
transition: max-height 0.6s;
padding: 20px;
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details .comment {
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details .comment * {
color: #6b7880;
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details ul {
list-style-type: disc;
font-size: 14px;
margin-left: 10px;
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details ul li {
color: #6b7880;
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme:hover .details {
max-height: 1000px;
visibility: visible;
}
main #page-container #education-page .section-contents .infos-inscriptions {
display: flex;
gap: 40px;
background-image: url("/assets/images/wallpaper_binary_light.png");
}
main #page-container #education-page .section-contents .infos-inscriptions .groups,
main #page-container #education-page .section-contents .infos-inscriptions .pricing {
padding: 20px;
display: flex;
flex-direction: column;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups h3,
main #page-container #education-page .section-contents .infos-inscriptions .pricing h3 {
}
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;
main #page-container #education-page .section-contents .infos-inscriptions .groups .download-link,
main #page-container #education-page .section-contents .infos-inscriptions .pricing .download-link {
border: 1px solid;
padding: 10px;
display: inline-block;
margin: 10px 0 0;
}
@media screen and (max-width: 900px) {
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes {
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme {
width: 100%;
margin-bottom: 20px;
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details {
background-color: #fff9;
position: relative;
top: unset;
width: 100%;
left: unset;
max-height: unset;
visibility: visible;
padding: 10px;
box-shadow: none;
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details ul {
list-style-type: disc;
font-size: 14px;
margin-left: 10px;
}
main #page-container #education-page .section-contents .infos-inscriptions {
flex-direction: column;
}
}
@media screen and (max-width: 560px) {
main #page-container #education-page h3.big {
font-size: 22px;
}
main #page-container #education-page .title-banner {
height: 170px;
min-height: unset;
}
main #page-container #education-page .title-banner h2 {
font-size: 2em;
margin: 20px;
text-shadow: 0 0 4px #000b;
}
main #page-container #education-page .section-contents {
grid-template-columns: 1fr;
}
main #page-container #education-page .section-contents .full-row {
grid-column: 1;
}
main #page-container #education-page .section-contents .practical-infos {
grid-column: 1;
grid-row: 3;
gap: 10px;
padding: 10px;
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes {
grid-column: 1;
grid-row: 2;
display: block;
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme {
margin-bottom: 20px;
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details {
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
background-color: #fff9;
position: relative;
top: unset;
width: 100%;
left: unset;
max-height: unset;
visibility: visible;
padding: 10px;
box-shadow: none;
}
main #page-container #education-page .section-contents .infos-inscriptions {
gap: 10px;
padding: 10px;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups,
main #page-container #education-page .section-contents .infos-inscriptions .pricing {
background-color: white;
padding: 20px;
display: flex;
flex-direction: column;
}
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 {
width: 100%;
}
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;
}
}
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-direction: column;
gap: 20px;
font-size: 12px;
}
main footer span {
color: #96a5ae;
}
main footer .logo {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}
main footer .logo img {
width: 35px;
}
main footer .logo img.text-logo {
width: 100px;