Update README.md
Browse files
README.md
CHANGED
@@ -733,6 +733,208 @@ strong {
|
|
733 |
font-weight: 700;
|
734 |
color: #333;
|
735 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
736 |
</style>
|
737 |
<body>
|
738 |
<div class="section">
|
|
|
733 |
font-weight: 700;
|
734 |
color: #333;
|
735 |
}
|
736 |
+
|
737 |
+
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;700&family=Space+Grotesk:wght@400;700&display=swap');
|
738 |
+
|
739 |
+
body {
|
740 |
+
font-family: 'Roboto Mono', monospace;
|
741 |
+
background: linear-gradient(180deg, #0d1a2b, #1a2b3d, #0d1a2b);
|
742 |
+
color: #a3b1c6;
|
743 |
+
line-height: 1.7;
|
744 |
+
margin: 0;
|
745 |
+
padding: 40px 20px;
|
746 |
+
background-attachment: fixed;
|
747 |
+
background-size: cover;
|
748 |
+
min-height: 100vh;
|
749 |
+
}
|
750 |
+
|
751 |
+
.container {
|
752 |
+
max-width: 1200px;
|
753 |
+
margin: 0 auto;
|
754 |
+
background: linear-gradient(145deg, rgba(40, 50, 70, 0.95), rgba(30, 40, 60, 0.9), rgba(20, 30, 50, 0.85));
|
755 |
+
padding: 60px;
|
756 |
+
border-radius: 35px;
|
757 |
+
box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), inset 0 0 25px rgba(255, 255, 255, 0.1);
|
758 |
+
position: relative;
|
759 |
+
overflow: hidden;
|
760 |
+
border: 2px solid rgba(150, 200, 255, 0.2);
|
761 |
+
}
|
762 |
+
|
763 |
+
.container::before {
|
764 |
+
content: '';
|
765 |
+
position: absolute;
|
766 |
+
top: -60%;
|
767 |
+
left: -60%;
|
768 |
+
width: 220%;
|
769 |
+
height: 220%;
|
770 |
+
background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
|
771 |
+
animation: cosmic-pulse 14s infinite;
|
772 |
+
pointer-events: none;
|
773 |
+
}
|
774 |
+
|
775 |
+
@keyframes cosmic-pulse {
|
776 |
+
0% { transform: scale(0.8) rotate(0deg); opacity: 0.4; }
|
777 |
+
50% { transform: scale(1.1) rotate(180deg); opacity: 0.6; }
|
778 |
+
100% { transform: scale(0.8) rotate(360deg); opacity: 0.4; }
|
779 |
+
}
|
780 |
+
|
781 |
+
h1, h2, h3, h4 {
|
782 |
+
font-family: 'Space Grotesk', sans-serif;
|
783 |
+
text-transform: uppercase;
|
784 |
+
color: #7fffd4;
|
785 |
+
text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.6);
|
786 |
+
font-weight: 700;
|
787 |
+
letter-spacing: 1.5px;
|
788 |
+
margin-bottom: 25px;
|
789 |
+
}
|
790 |
+
|
791 |
+
h1 { font-size: 2.8em; text-align: center; margin-bottom: 40px; color: #ffffff; }
|
792 |
+
h2 { font-size: 2.0em; border-bottom: 2px solid rgba(127, 255, 212, 0.3); padding-bottom: 10px; margin-top: 30px; }
|
793 |
+
h3 { font-size: 1.6em; margin-top: 25px; color: #b0e0e6; }
|
794 |
+
h4 { font-size: 1.3em; margin-top: 20px; color: #add8e6; }
|
795 |
+
|
796 |
+
.section {
|
797 |
+
margin-bottom: 60px;
|
798 |
+
padding: 30px;
|
799 |
+
background: rgba(30, 45, 60, 0.9);
|
800 |
+
border-radius: 18px;
|
801 |
+
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(100, 150, 200, 0.1);
|
802 |
+
border: 1px solid rgba(90, 110, 140, 0.2);
|
803 |
+
transition: all 0.4s ease-in-out;
|
804 |
+
position: relative;
|
805 |
+
z-index: 1;
|
806 |
+
}
|
807 |
+
|
808 |
+
.section:hover {
|
809 |
+
transform: translateY(-7px);
|
810 |
+
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(120, 170, 220, 0.15);
|
811 |
+
}
|
812 |
+
|
813 |
+
.detail {
|
814 |
+
padding: 25px;
|
815 |
+
margin-bottom: 25px;
|
816 |
+
border: 1px solid rgba(120, 160, 220, 0.3);
|
817 |
+
border-left: 4px solid #7fffd4;
|
818 |
+
border-radius: 20px;
|
819 |
+
background: linear-gradient(145deg, rgba(40, 55, 70, 0.8), rgba(100, 140, 200, 0.2));
|
820 |
+
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.2);
|
821 |
+
transition: all 0.4s ease;
|
822 |
+
}
|
823 |
+
|
824 |
+
.detail:hover {
|
825 |
+
background: linear-gradient(145deg, rgba(50, 65, 80, 0.9), rgba(140, 180, 240, 0.25));
|
826 |
+
transform: translateY(-7px);
|
827 |
+
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.25);
|
828 |
+
border-left-color: #a2f4ff;
|
829 |
+
}
|
830 |
+
|
831 |
+
.detail-icon {
|
832 |
+
font-size: 1.8em;
|
833 |
+
color: #63d2ff;
|
834 |
+
margin-right: 20px;
|
835 |
+
transition: color 0.3s ease, transform 0.3s ease;
|
836 |
+
}
|
837 |
+
|
838 |
+
.detail:hover .detail-icon {
|
839 |
+
color: #a2f4ff;
|
840 |
+
transform: scale(1.2);
|
841 |
+
}
|
842 |
+
|
843 |
+
ul {
|
844 |
+
list-style: none;
|
845 |
+
padding: 0;
|
846 |
+
}
|
847 |
+
|
848 |
+
ul li {
|
849 |
+
margin: 20px 0;
|
850 |
+
padding: 20px;
|
851 |
+
background: linear-gradient(145deg, rgba(50, 60, 75, 0.7), rgba(60, 100, 140, 0.25));
|
852 |
+
border-radius: 15px;
|
853 |
+
box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3), 0 8px 25px rgba(0, 0, 0, 0.6);
|
854 |
+
transition: all 0.4s ease;
|
855 |
+
border-left: 3px solid #add8e6;
|
856 |
+
}
|
857 |
+
|
858 |
+
ul li:hover {
|
859 |
+
background: linear-gradient(145deg, rgba(60, 70, 85, 0.8), rgba(80, 120, 160, 0.3));
|
860 |
+
transform: translateX(10px);
|
861 |
+
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2);
|
862 |
+
border-left-color: #b0e0e6;
|
863 |
+
}
|
864 |
+
|
865 |
+
a {
|
866 |
+
color: #63d2ff;
|
867 |
+
text-decoration: none;
|
868 |
+
font-weight: bold;
|
869 |
+
transition: color 0.3s ease, text-shadow 0.3s ease;
|
870 |
+
}
|
871 |
+
|
872 |
+
a:hover {
|
873 |
+
color: #e0ffff;
|
874 |
+
text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 18px rgba(100, 200, 255, 0.6);
|
875 |
+
}
|
876 |
+
|
877 |
+
code {
|
878 |
+
font-family: 'Roboto Mono', monospace;
|
879 |
+
background-color: rgba(0, 0, 0, 0.3);
|
880 |
+
padding: 3px 6px;
|
881 |
+
border-radius: 4px;
|
882 |
+
color: #7fffd4;
|
883 |
+
}
|
884 |
+
|
885 |
+
pre {
|
886 |
+
background-color: rgba(0, 0, 0, 0.3);
|
887 |
+
padding: 15px;
|
888 |
+
border-radius: 8px;
|
889 |
+
overflow-x: auto;
|
890 |
+
border: 1px solid rgba(100, 130, 170, 0.2);
|
891 |
+
}
|
892 |
+
|
893 |
+
pre code {
|
894 |
+
background-color: transparent;
|
895 |
+
padding: 0;
|
896 |
+
color: #e0ffff;
|
897 |
+
}
|
898 |
+
|
899 |
+
@media screen and (max-width: 768px) {
|
900 |
+
.container {
|
901 |
+
padding: 30px 20px;
|
902 |
+
}
|
903 |
+
|
904 |
+
.section {
|
905 |
+
padding: 20px 15px;
|
906 |
+
}
|
907 |
+
|
908 |
+
h1 {
|
909 |
+
font-size: 2.2em;
|
910 |
+
}
|
911 |
+
|
912 |
+
h2 {
|
913 |
+
font-size: 1.8em;
|
914 |
+
}
|
915 |
+
}
|
916 |
+
|
917 |
+
@media screen and (max-width: 480px) {
|
918 |
+
body {
|
919 |
+
padding: 20px 10px;
|
920 |
+
}
|
921 |
+
|
922 |
+
.container {
|
923 |
+
padding: 20px 15px;
|
924 |
+
}
|
925 |
+
|
926 |
+
.detail {
|
927 |
+
padding: 15px 10px;
|
928 |
+
}
|
929 |
+
|
930 |
+
h1 {
|
931 |
+
font-size: 1.8em;
|
932 |
+
}
|
933 |
+
|
934 |
+
ul li {
|
935 |
+
padding: 15px 10px;
|
936 |
+
}
|
937 |
+
}
|
938 |
</style>
|
939 |
<body>
|
940 |
<div class="section">
|