We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f5d722 commit b2398b7Copy full SHA for b2398b7
1 file changed
assets/css/style.css
@@ -679,3 +679,37 @@ footer {
679
.lang-content.active {
680
display: block;
681
}
682
+
683
+/* Langues toggle */
684
+.language-selector {
685
+ gap: 10px;
686
+ justify-content: center;
687
+}
688
+.language-btn {
689
+ background: rgba(0,0,0,0.7);
690
+ color: #00ff00;
691
+ border: 2px solid #00ff00;
692
+ padding: 10px 15px;
693
+ border-radius: 20px;
694
+ cursor: pointer;
695
+ transition: all 0.3s;
696
+ opacity: 0.8;
697
698
+.language-btn:hover, .language-btn.active {
699
+ background: #00ff00;
700
+ color: #000;
701
+ opacity: 1;
702
703
+.lang-content {
704
+ display: none;
705
+ background: rgba(0,0,0,0.9);
706
+ padding: 20px;
707
+ border-radius: 10px;
708
+ margin-top: 20px;
709
710
+.lang-content.active {
711
+ display: block;
712
713
+.text-lg {
714
+ font-size: 1.2rem;
715
0 commit comments