123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445 |
- #support-link {
- display: inline-block;
- transition: transform 0.2s;
- }
- #support-link:hover {
- transform: scale(1.1);
- transition: transform 0.5s;
- }
- p {
- word-wrap: break-word;
- }
- header {
- margin: 1em 10%;
- text-align: center;
- }
- @media (max-width: 750px) {
- header {
- margin: 0.7em 5%;
- }
- }
- @media (max-width: 600px) {
- header {
- margin: 0.4em 3%;
- }
- }
- #title {
- text-align: center;
- font-size: 40px;
- margin: 15px 0;
- }
- @media (max-width: 600px) {
- #title {
- font-size: 35px;
- margin: 10px 0;
- }
- }
- #options {
- position: absolute;
- right: 15vw;
- display: flex;
- justify-content: flex-end;
- }
- #options div:first-child {
- margin-right: 10px;
- }
- #options div:last-child {
- margin-left: 10px;
- }
- #themebtn {
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 30px;
- background-color: #D8D8D8;
- border-radius: 50px;
- width: 50px;
- height: 50px;
- transition: transform 0.3s, box-shadow 0.1s;
- }
- #themebtn:hover {
- transform: scale(1.1);
- transition: transform 0.3s;
- cursor: pointer;
- }
- #themeimg {
- width: 25px;
- height: 25px;
- }
- #langbtn {
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 30px;
- background-color: #D8D8D8;
- border-radius: 50px;
- width: 50px;
- height: 50px;
- transition: transform 0.3s, box-shadow 0.1s;
- }
- #langbtn:hover {
- transform: scale(1.1);
- transition: transform 0.3s;
- cursor: pointer;
- color: #5c6e91;
- }
- .icon {
- height: 30px;
- display: inherit;
- }
- main {
- margin: 1em 25%;
- margin-bottom: 0;
- padding-bottom: 20px;
- }
- #synopsis {
- margin: 0 5%;
- display: flex;
- flex-wrap: wrap;
- }
- #synopsis > div {
- margin: auto;
- flex-basis: 40%;
- }
- #logo {
- width: 150px;
- height: 150px;
- border-radius: 10%;
- background-image: url(../resources/images/Sv443NetworkIcon.png);
- background-size: cover;
- margin-left: auto;
- margin-right: 0;
- }
- #logo.pride {
- background-image: url(../resources/images/Sv443NetworkIcon_pride.png);
- }
- #projects {
- display: flex;
- flex-wrap: wrap;
- margin: 2em 0;
- justify-content: space-between;
- }
- #games, #scripts-websites {
- display: flex;
- flex-direction: column;
- flex-basis: 47.5%;
- margin-top: 1em;
- box-sizing: border-box;
- }
- #contact {
- display: flex;
- flex-direction: column;
- margin: 2em 0;
- box-sizing: border-box;
- }
- #support-img {
- width: 440px;
- }
- @media (max-width: 1300px) {
- #options {
- right: 0;
- }
- }
- @media (max-width: 600px) {
- #support-img {
- min-width: 300px;
- }
- }
- img.circle {
- width: 65px;
- height: 65px;
- margin: 10px;
- border-radius: 50%;
- box-sizing: border-box;
- background-size: cover;
- }
- footer {
- position: relative;
- bottom: 0;
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- background-color: #f1f1f1;
- }
- body[data-theme="dark"] footer a {
- color: #6f85ff;
- }
- body[data-theme="dark"] footer a:hover {
- color: #8b9cff;
- }
- body[data-theme="light"] footer a {
- color: #4b67fc;
- }
- body[data-theme="light"] footer a:hover {
- color: #6f85fc;
- }
- #legal {
- display: flex;
- flex-direction: column;
- justify-content: stretch;
- }
- #legal h4 {
- padding: 0px;
- margin: 15px;
- text-align: right;
- font-weight: normal;
- }
- #notif {
- position: fixed;
- top: 50px;
- left: 0;
- right: 0;
- margin: 0 auto;
- z-index: 1;
- background-color: #cce5ff;
- border-color: #b8daff;
- color: #004085;
- width: fit-content;
- width: -moz-fit-content;
- height: fit-content;
- height: -moz-fit-content;
- padding: 20px;
- border-radius: 10px;
- display: flex;
- justify-content: center;
- align-items: center;
- text-align: center;
- visibility: hidden;
- opacity: 0;
- transition: visibility 0.5s, opacity 0.5s;
- }
- #notif h3 {
- margin: 0;
- }
- .fade-to-the-right {
- animation: fade-to-the-right 0.8s;
- }
- @keyframes fade-to-the-right {
- 0% {
- opacity: 0.1;
- transform: translateX(-120%);
- }
- 100% {
- opacity: 1;
- transform: translateX(0);
- }
- }
- #consentButtonWrapper {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- white-space: nowrap;
- margin-left: 25px;
- }
- #cookie-consent {
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 99999;
- display: none;
- justify-content: space-around;
- align-items: center;
- padding: 5px 100px;
- flex-basis: 100%;
- font-size: 16px;
- border-top-right-radius: 25px;
- /** bgcolor is in global.css */
- }
- #cookie-consent > div.big {
- flex-grow: 2;
- }
- .cookieButton {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 25px;
- min-width: 60px;
- border-radius: 30px;
- padding: 10px 15px;
- margin: 10px 5px;
- border-style: none solid solid none;
- border-width: 3px;
- }
- body[data-theme="light"] #cookie-consent {
- background-color: #9d9ea1;
- }
- body[data-theme="dark"] #cookie-consent {
- background-color: #080808;
- }
- body[data-theme="light"] .cookieButton.g {
- background-color: #6ddd6d;
- border-color: #499649; /* :O */
- }
- body[data-theme="light"] .cookieButton.r {
- background-color: #d67272;
- border-color: #b63535;
- }
- body[data-theme="dark"] .cookieButton.g {
- background-color: #306430;
- border-color: #1a3d1a; /* :O */
- }
- body[data-theme="dark"] .cookieButton.r {
- background-color: #6b3535;
- border-color: #221010;
- }
- body[data-theme="light"] .cookieButton span:not(.fas) {
- color: black;
- }
- body[data-theme="dark"] .cookieButton span:not(.fas) {
- color: white;
- }
- .cookieButton.g {
- background-color: #3d813d;
- }
- .cookieButton.r {
- background-color: #a14545;
- }
- p.left-align {
- display: inline-block;
- text-align: left;
- }
- @media (max-width: 800px) {
- #cookie-consent {
- flex-direction: row;
- flex-wrap: wrap;
- border-top-right-radius: 0;
- text-align: center;
- }
- }
- @media (max-width: 512px) {
- #logo {
- margin-right: auto;
- }
- footer {
- flex-direction: column;
- }
- #legal > h4 {
- font-size: 16px;
- margin: 15px 5px;
- }
- #legal {
- flex-direction: row;
- justify-content: center;
- margin-bottom: 15px;
- }
- }
- @media (max-width: 1000px) {
- #cookie-consent {
- padding: 5px 30px;
- }
- #synopsis {
- margin: 0;
- }
-
- #synopsis > div {
- flex-basis: 80%;
- }
- #games, #scripts-websites {
- flex-basis: 100%;
- }
- }
- @media (max-width: 1400px) {
- main {
- margin: 1em 15%;
- }
- }
- @media (max-width: 700px) {
- main {
- margin-top: 0.5rem;
- }
- body {
- font-size: calc(1em - 2px);
- }
- }
- @media (max-width: 1200px) {
- #logo {
- margin: auto;
- }
- #support-img {
- min-width: 440px;
- }
- main {
- margin-top: 1rem;
- }
- }
- @media (max-width: 550px) {
- #support-img {
- min-width: 280px;
- }
- }
|