Newer
Older
body ul {
margin: 0;
padding: 0;
list-style-type: none;
}
text-decoration: none;
}
body a:hover {
main {
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
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
93
94
95
96
main .warning-banner {
background: url("/assets/images/wallpaper_warning.svg");
width: 100%;
height: 40px;
padding: 20px 10%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
main .warning-banner strong {
font-size: 18px;
color: #1c3db2;
}
main .image-carousel {
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
background-color: black;
position: relative;
}
main .image-carousel img {
position: absolute;
max-width: 100%;
max-height: 400px;
}
main .image-carousel .carousel-bullets {
position: absolute;
bottom: 0;
padding: 20px;
display: flex;
gap: 10px;
}
main .image-carousel .carousel-bullets .bullet {
cursor: pointer;
width: 8px;
height: 8px;
background-color: #6b7880;
border-radius: 100%;
box-shadow: 0 0 3px black;
}
main .image-carousel .carousel-bullets .bullet.active {
background-color: #d4d9dd;
}
@media screen and (max-width: 900px) {
main .image-carousel img {
max-height: 100%;
}
main .image-carousel .carousel-bullets {
gap: 15px;
}
main .image-carousel .carousel-bullets .bullet {
width: 12px;
height: 12px;
}
}
background-color: white;
position: sticky;
position: -webkit-sticky;
top: 0;
z-index: 10;
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");
main #page-container .page-header .big-logo {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
gap: 20px;
padding: 20px;
}
main #page-container .page-header .big-logo img {
width: 200px;
max-width: 100%;
}
main #page-container .page-header .big-logo img.logo-text {
width: 300px;
max-width: 100%;
}
main #page-container .page-header .logo {
padding-left: 30px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
main #page-container .page-header .logo img {
@media screen and (max-width: 560px) {
main #page-container .page-header h1 {
padding: 15px 20px 0;
}
main #page-container .page-header p {
main #page-container .page-header .big-logo {
flex-direction: column;
}
}
main #page-container .page-header.logo-left .grid-wrapper {
display: grid;
main #page-container .page-header.logo-left .grid-wrapper h1 {
width: 100%;
}
main #page-container .page-header.logo-left .grid-wrapper .logo {
grid-column: 1;
main #page-container .page-header.logo-left .grid-wrapper p {
margin: 0;
main #page-container .page-header.logo-left .grid-wrapper h1 {
padding: 0 20px;
}
main #page-container .page-header.logo-left .grid-wrapper .logo {
padding: 0 20px;
}
}
main #page-container .page-philo {
background-image: url("/assets/images/wallpaper_binary.png");
padding: 120px 30px;
margin: 40px 0;
}
main #page-container .page-philo p {
width: 100%;
max-width: 600px;
font-size: 18px;
text-align: center;
font-style: italic;
font-weight: bold;
}
main #page-container .page-philo p * {
}
main #page-container .page-contents-center {
width: 1300px;
max-width: 100%;
@media screen and (max-width: 1300px) {
main #page-container .page-contents-center {
padding: 20px 20px 0;
}
}
main #page-container h2.page-section-title {
color: #4baabb;
padding: 20px 0 10px;
width: 1300px;
max-width: 100%;
margin: 0 auto;
}
@media screen and (max-width: 1300px) {
main #page-container h2.page-section-title {
padding: 20px 20px 0;
}
}
main #page-container #home-page {
display: flex;
flex-direction: column;
gap: 20px;
}
main #page-container #home-page .section-title {
padding: 10px;
margin: 0;
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
main #page-container #home-page .page-header .philo-bubbles {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-wrap: wrap;
gap: 40px;
margin: 30px 20px;
}
@media screen and (max-width: 780px) {
main #page-container #home-page .page-header .philo-bubbles {
gap: 20px;
}
}
main #page-container #home-page .page-header .philo-bubbles li {
border-radius: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
background-color: #d4d9dd;
width: 100px;
height: 100px;
}
main #page-container #home-page .page-header .philo-bubbles li * {
color: #6b7880;
}
@media screen and (max-width: 560px) {
main #page-container #home-page .page-header .philo-bubbles li {
width: 75px;
height: 75px;
}
main #page-container #home-page .page-header .philo-bubbles li * {
font-size: 12px;
}
}
main #page-container #home-page .page-header .philo-bubbles li:first-child {
background-color: #6b7880;
}
main #page-container #home-page .page-header .philo-bubbles li:first-child * {
color: white;
}
main #page-container #home-page .page-header .philo-bubbles li:last-child {
background-color: #35393c;
}
main #page-container #home-page .page-header .philo-bubbles li:last-child * {
color: #96a5ae;
}
main #page-container #home-page .articles-displayer {
margin: 0 auto 40px;
}
main #page-container #home-page .articles-displayer .prev-next-buttons {
display: flex;
justify-content: space-between;
}
main #page-container #home-page .articles-displayer .prev-next-buttons .prev-btn,
main #page-container #home-page .articles-displayer .prev-next-buttons .next-btn {
background: none;
display: flex;
align-items: center;
gap: 10px;
padding: 5px 0;
main #page-container #home-page .articles-displayer .prev-next-buttons .prev-btn.disabled,
main #page-container #home-page .articles-displayer .prev-next-buttons .next-btn.disabled {
visibility: hidden;
main #page-container #home-page .articles-displayer .prev-next-buttons .prev-btn.active,
main #page-container #home-page .articles-displayer .prev-next-buttons .next-btn.active {
main #page-container #home-page .articles-displayer .prev-next-buttons .prev-btn.active:hover,
main #page-container #home-page .articles-displayer .prev-next-buttons .next-btn.active:hover {
color: #3c4144;
main #page-container #home-page .articles-displayer .prev-next-buttons .next-btn.active::after {
border-width: 2px 2px 0 0;
width: 8px;
height: 8px;
transform: rotate(45deg);
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
main #page-container #home-page .articles-displayer .prev-next-buttons .prev-btn.active::before {
border-width: 2px 2px 0 0;
width: 8px;
height: 8px;
transform: rotate(-135deg);
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
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;
background-color: #3c4144;
}
main #page-container #home-page .articles-displayer article *:not(a) {
color: #d4d9dd;
}
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 time {
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;
}
main #page-container #home-page .articles-displayer article .image-carousel {
grid-row: 1/span 4;
grid-column: 2;
}
main #page-container #home-page .articles-displayer article .image-carousel img {
max-height: 100%;
}
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;
}
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
@media screen and (max-width: 900px) {
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 .poles {
display: grid;
grid-template-columns: 1fr 1fr;
main #page-container #home-page .poles .theme-card {
display: flex;
flex-direction: column;
width: 100%;
cursor: pointer;
transition: transform 0.3s;
}
main #page-container #home-page .poles .theme-card .card-img {
width: 100%;
height: 240px;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-direction: column;
main #page-container #home-page .poles .theme-card .card-img img {
main #page-container #home-page .poles .theme-card .card-title h2 {
margin: 0;
text-align: center;
padding: 10px 20px;
color: #4baabb;
main #page-container #home-page .poles .theme-card .card-description {
background-image: url("/assets/images/wallpaper_binary.png");
flex: 1;
main #page-container #home-page .poles .theme-card .card-description p {
margin: 0;
color: #72e3f0;
text-align: center;
}
main #page-container #home-page .poles .theme-card:hover {
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
main #page-container #home-page .kuadrado-values {
background-image: url("/assets/images/wallpaper_binary_light.png");
padding: 100px 0 120px;
}
main #page-container #home-page .kuadrado-values *:not(a, blue) {
color: #d4d9dd;
}
main #page-container #home-page .kuadrado-values h2 {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
margin: 0 auto 60px;
width: 120px;
height: 120px;
background-image: url("/assets/images/wallpaper_binary.png");
border-radius: 100%;
color: #72e3f0;
}
main #page-container #home-page .kuadrado-values ul.values-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
main #page-container #home-page .kuadrado-values ul.values-list li {
background-image: url("/assets/images/wallpaper_binary.png");
padding: 30px 20px 40px;
}
main #page-container #home-page .kuadrado-values ul.values-list li h3 {
text-align: center;
}
main #page-container #home-page .kuadrado-values ul.values-list li p {
text-align: justify;
}
main #page-container #home-page .poles {
grid-template-columns: 1fr;
gap: 40px;
}
main #page-container #home-page .poles .theme-card {
main #page-container #home-page .poles .theme-card .card-img {
main #page-container #home-page .poles .theme-card .card-img img {
main #page-container #home-page .poles .theme-card .card-title h2 {
main #page-container #home-page .poles .theme-card .card-description {
background-image: url("/assets/images/wallpaper_binary.png");
flex: 1;
main #page-container #home-page .poles .theme-card .card-description p {
margin: 0;
color: #72e3f0;
text-align: center;
}
main #page-container #home-page .poles .theme-card:hover {
main #page-container #home-page .kuadrado-values ul.values-list {
grid-template-columns: 1fr;
}
main #page-container #home-page .poles {
main #page-container #home-page .articles-displayer {
padding: 0;
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 .special-announcement {
background-color: #ffd000;
}
main #page-container #education-page .special-announcement .page-contents-center {
padding: 0 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
height: 100px;
}
main #page-container #education-page .special-announcement .page-contents-center p {
color: #555d61;
font-size: 20px;
font-weight: 600;
margin: 0;
}
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 {
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
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;
}
}
main #page-container #games-page .game-articles article {
display: grid;
grid-template-columns: 0.7fr 1fr;
gap: 0 20px;
}
main #page-container #games-page .game-articles article.game-article {
grid-template-rows: repeat(6, auto);
background-color: #3c4144;
}
main #page-container #games-page .game-articles article.game-article *:not(a) {
color: #d4d9dd;
}
main #page-container #games-page .game-articles article.game-article .game-title {
grid-column: 1/span 2;
background-color: #d4d9dd;
margin: 0;
padding: 30px 20px;
color: #6b7880;
font-size: 35px;
font-style: italic;
}
main #page-container #games-page .game-articles article.game-article .game-tags {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin: 10px 20px;
}
main #page-container #games-page .game-articles article.game-article .game-tags span {
border-radius: 5px;
font-weight: 600;
}
main #page-container #games-page .game-articles article.game-article .game-subtitle {
grid-column: 1;
margin: 10px 20px 30px;
}
main #page-container #games-page .game-articles article.game-article .game-description {
grid-column: 1;
text-align: justify;
margin: 10px 20px 30px;
}
main #page-container #games-page .game-articles article.game-article .image-carousel {
grid-column: 2;
grid-row: 2/span 4;
}
main #page-container #games-page .game-articles article.game-article .game-team {
grid-column: 1/span 2;
}
main #page-container #games-page .game-articles article.game-article .game-team h2 {
padding: 10px 20px;
font-style: italic;
font-size: 20px;
margin: 0;
}
main #page-container #games-page .game-articles article.game-article .game-team .team-members {
display: flex;
flex-direction: column;
}
main #page-container #games-page .game-articles article.game-article .game-team .team-members .team-member {
display: grid;
}
main #page-container #games-page .game-articles article.game-article .game-team .team-members .team-member .team-member-img {
grid-row: 1/span 3;
overflow: hidden;
}
main #page-container #games-page .game-articles article.game-article .game-team .team-members .team-member .team-member-img img {
width: 100%;
}
main #page-container #games-page .game-articles article.game-article .game-team .team-members .team-member .team-member-title {
}
main #page-container #games-page .game-articles article.game-article .game-team .team-members .team-member .team-member-subtitle {
margin: 0 10px;
font-size: 14px;
color: #96a5ae;
font-style: italic;
}
main #page-container #games-page .game-articles article.game-article .game-team .team-members .team-member .team-member-body {
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
text-align: justify;
}
main #page-container #games-page .game-articles article.placeholder {
height: 400px;
}
main #page-container #games-page .game-articles article.placeholder * {
background-color: #d4d9dd;
}
@media screen and (max-width: 900px) {
main #page-container #games-page .game-articles article {
grid-template-columns: 1fr;
}
main #page-container #games-page .game-articles article.game-article {
grid-template-rows: repeat(5, auto);
}
main #page-container #games-page .game-articles article.game-article .game-title {
grid-column: 1;
padding: 20px;
font-size: 25px;
}
main #page-container #games-page .game-articles article.game-article .image-carousel {
grid-column: 1;
grid-row: 2;
}
main #page-container #games-page .game-articles article.game-article .game-team {
grid-column: 1;
}
main #page-container #games-page .game-articles article.game-article .game-team .team-members .team-member {
grid-template-columns: 70px 1fr;
}
main #page-container #games-page .game-articles article.game-article .game-team .team-members .team-member .team-member-img {
grid-row: 1/span 2;
}
main #page-container #games-page .game-articles article.game-article .game-team .team-members .team-member .team-member-body {
grid-column: 1/span 2;
}
}
main #page-container #software-page .software-articles {
margin: 0 auto 50px;
}
main #page-container #software-page .software-articles article.software-article {
display: grid;
gap: 0 30px;
background-color: #3c4144;
}
main #page-container #software-page .software-articles article.software-article > * {
color: #d4d9dd;
}
main #page-container #software-page .software-articles article.software-article .software-title {
grid-column: 1/span 2;
background-color: #d4d9dd;
color: #6b7880;
margin: 0;
padding: 20px;
}
main #page-container #software-page .software-articles article.software-article .software-date {
text-align: right;
color: #6b7880;
font-style: italic;
font-size: 12px;
}
main #page-container #software-page .software-articles article.software-article .software-subtitle {
grid-column: 1;
}
main #page-container #software-page .software-articles article.software-article .software-description {
grid-column: 1;
}
main #page-container #software-page .software-articles article.software-article .image-carousel {
grid-column: 2;
}
main #page-container #software-page .software-articles article.software-article .software-technical {
grid-column: 1/span 2;
}
main #page-container #software-page .software-articles article.software-article .software-technical h2 {
background-color: #96a5ae;
color: #3c4144;
margin: 0;
padding: 10px 20px;
font-size: 20px;
font-style: italic;
}
main #page-container #software-page .software-articles article.software-article .software-technical ul.technical-details {
margin: 10px;
main #page-container #software-page .software-articles article.software-article .software-technical ul.technical-details .detail {
display: grid;
grid-template-columns: 1fr auto;
main #page-container #software-page .software-articles article.software-article .software-technical ul.technical-details .detail:not(:first-child) {
border-top: 1px solid #6b7880;
main #page-container #software-page .software-articles article.software-article .software-technical ul.technical-details .detail label {
main #page-container #software-page .software-articles article.software-article .software-technical ul.technical-details .detail ul {
main #page-container #software-page .software-articles article.software-article .software-technical ul.technical-details .detail *:not(a) {
color: #d4d9dd;
}
@media screen and (max-width: 900px) {
main #page-container #software-page .software-articles article.software-article {
grid-template-columns: 1fr;
}
main #page-container #software-page .software-articles article.software-article .software-title {
grid-column: 1;
}
main #page-container #software-page .software-articles article.software-article .image-carousel {
grid-column: 1;
grid-row: 2;
}
main #page-container #software-page .software-articles article.software-article .software-technical {
grid-column: 1;
}
}
main #page-container #software-page .software-articles article.placeholder {
display: flex;
flex-direction: column;
gap: 10px;
margin: 30px;
}
main #page-container #software-page .software-articles article.placeholder * {
}
main #page-container #software-page .software-articles article.placeholder .title {
height: 60px;
}
main #page-container #software-page .software-articles article.placeholder .body {
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
}
main #page-container #software-page .software-articles article.placeholder .details {
height: 200px;
}
main #page-container #software-page #service-section h3 {
margin: 0 0 20px;
}
main #page-container #software-page #service-section .skills {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
margin: 20px 0;
}
main #page-container #software-page #service-section .skills ul {
display: grid;
gap: 1px;
max-width: 100%;
}
main #page-container #software-page #service-section .skills ul li {
box-shadow: 0 0 2px #96a5ae;
}
main #page-container #software-page #service-section .skills ul.skill-themes {
width: 600px;
grid-template-columns: repeat(3, 1fr);
background-color: #3c4144;
}
@media screen and (max-width: 560px) {
main #page-container #software-page #service-section .skills ul.skill-themes {
grid-template-columns: 1fr 1fr;
width: 100%;
}
}
@media screen and (max-width: 480px) {
main #page-container #software-page #service-section .skills ul.skill-themes {
grid-template-columns: 1fr;
}
}
main #page-container #software-page #service-section .skills ul.skill-themes li {
font-weight: bold;
color: #d4d9dd;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
padding: 10px;
text-align: center;
}
main #page-container #software-page #service-section .skills ul.skill-stack {
width: 400px;
grid-template-columns: repeat(4, 1fr);
}
main #page-container #software-page #service-section .skills ul.skill-stack li {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-direction: column;
position: relative;
padding: 10px;
}
main #page-container #software-page #service-section .skills ul.skill-stack li strong {
visibility: hidden;
max-height: 0;
height: 70px;
padding: 0 20px;
transition: max-height 0.3s;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
main #page-container #software-page #service-section .skills ul.skill-stack li img {
width: 100%;
}
@media screen and (min-width: 780px) {
main #page-container #software-page #service-section .skills ul.skill-stack li:hover strong {
visibility: visible;
max-height: 80px;
background-color: #fffc;
font-size: 18px;
}
}
@media screen and (max-width: 780px) {
main #page-container #software-page #service-section .skills ul.skill-stack li strong {
visibility: visible;
position: relative;
max-height: unset;
height: unset;
padding: 0;
}
}
@media screen and (max-width: 480px) {
main #page-container #software-page #service-section .skills ul.skill-stack {
grid-template-columns: repeat(3, 1fr);
}
}
main #page-container #software-page #service-section .teaser {
background-image: url("/assets/images/wallpaper_binary.png");
padding: 40px 30px;
text-align: center;
font-size: 18px;
}
main #page-container #software-page #service-section .teaser strong {
color: #d4d9dd;
}
main #page-container #software-page #service-section .teaser blue {
color: #72e3f0;
}
main #page-container #software-page #service-section .call-us {
display: grid;
grid-template-columns: 1fr 1fr;
width: 100%;
gap: 10px 0;
margin: 40px 0;
}
main #page-container #software-page #service-section .call-us * {
font-weight: bold;
}
main #page-container #software-page #service-section .call-us h3 {
grid-column: 1/span 2;
text-align: center;
}
main #page-container #software-page #service-section .call-us a {
background-color: #3c4144;
font-size: 20px;
text-align: center;
padding: 20px;
}
@media screen and (max-width: 780px) {
main #page-container #software-page #service-section .call-us {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-direction: column;
gap: 0;
}
main #page-container #software-page #service-section .call-us h3 {
margin: 0 0 10px;
}
main #page-container #software-page #service-section .call-us a {
width: 100%;
}
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;
main footer .social {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
gap: 20px;
}
main footer .social a {
background-color: #555d61;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
width: 25px;
height: 25px;
font-weight: bold;
font-size: 16px;
border-radius: 100%;
}