1+ @import url ('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap' );
2+ @import url ('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;400;500;600&display=swap' );
3+ @import url ('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap' );
4+ @import url ('https://fonts.googleapis.com/css2?family=Satisfy&display=swap' );
5+ : root {
6+ --soft-light1 : # 585858 ;
7+ --soft-light2 : # bbbbbb ;
8+ --max-width : 1200px ;
9+ }
10+
11+ * {
12+ font-family : 'Montserrat' , sans-serif;
13+ margin : 0 ;
14+ padding : 0 ;
15+ box-sizing : border-box;
16+ outline : none;
17+ }
18+
19+ body {
20+ background : # bababa ;
21+ color : rgb (4 , 3 , 3 );
22+ overflow-x : hidden;
23+ }
24+
25+ .main-header {
26+ background : linear-gradient (90deg , red, blue);
27+ background-image : linear-gradient (19deg , # 21D4FD 0% , # B721FF 100% );
28+ background-image : linear-gradient (225deg , # FF3CAC 0% , # 784BA0 50% , # 2B86C5 100% );
29+ }
30+
31+ .web-header {
32+ display : flex;
33+ flex-direction : row;
34+ justify-content : flex-start;
35+ align-items : center;
36+ padding : 1rem ;
37+ column-gap : 1rem ;
38+
39+ }
40+ .link2 {
41+ display : inline-block;
42+ }
43+ .myLogo {
44+ width : 2.5rem ;
45+ height : 2.5rem ;
46+ object-fit : contain;
47+ text-align : center;
48+ }
49+
50+ .web-name {
51+ font-family : 'Satisfy' , cursive;
52+ font-weight : 400 ;
53+ }
54+
55+ .nav-buttons {
56+
57+ padding : 0.55rem ;
58+ background-color : inherit;
59+ border : none;
60+ outline : none;
61+ cursor : pointer;
62+ color : # fff ;
63+ display : flex;
64+ flex-direction : column;
65+ justify-content : center;
66+ align-items : center;
67+ row-gap : 0.75rem ;
68+ font-size : 0.8rem ;
69+ width : 100% ;
70+ }
71+
72+ .nav-icons {
73+ background-color : inherit;
74+ width : 1.6rem ;
75+ height : 1.6rem ;
76+ object-fit : cover;
77+ pointer-events : none
78+ }
79+
80+ .nav-name {
81+ pointer-events : none;
82+ font-weight : bolder;
83+ text-align : center;
84+ background : linear-gradient (45deg , # f09433 0% , # e6683c 25% , # dc2743 50% , # cc2366 75% , # bc1888 100% );
85+ -webkit-background-clip : text;
86+ -webkit-text-fill-color : transparent;
87+ }
88+
89+
90+ /* .selection-menu {
91+ display: flex;
92+ flex-direction: row;
93+ justify-content: space-evenly;
94+ align-items: center;
95+ list-style: none;
96+ padding: 0.5rem;
97+ column-gap: 0.5rem;
98+ max-width: var(--max-width);
99+ margin: auto;
100+ } */
101+
102+ .nav-section {
103+ background-color : rgb (232 , 232 , 232 );
104+ display : flex;
105+ flex-direction : row;
106+
107+ align-items : center;
108+ overflow-x : scroll;
109+ list-style : none;
110+ padding : 1rem 3rem ;
111+ grid-column-gap : 0.9rem ;
112+ column-gap : 0.9rem ;
113+
114+
115+ margin : auto;
116+ border-bottom : 1px solid # b13d3d ;
117+ }
118+ .nav-section ::-webkit-scrollbar {
119+
120+ height : 5px ;
121+ }
122+
123+ .active-navigation {
124+ display : flex;
125+ justify-content : center;
126+ align-items : center;
127+ /* border-bottom: 4px solid #0000ce; */
128+ background : rgb (187 , 187 , 187 );
129+ border-radius : 0.5rem ;
130+ }
131+
132+ .active-navigation * {
133+ color : # ffffff ;
134+ }
135+
136+ a : -webkit-any-link : active {
137+ color : none;
138+ }
139+
140+ a {
141+ text-decoration : none;
142+ }
143+
144+ .error-page {
145+ width : 100% ;
146+ height : 50vh ;
147+ flex-direction : column;
148+ display : flex;
149+ justify-content : center;
150+ align-items : center;
151+ font-size : 0.75rem ;
152+ }
153+
154+ .error-page * {
155+ color : # dedede ;
156+ font-family : monospace;
157+ padding : 0.5rem 0 ;
158+ }
159+ .bio {
160+ color : rgb (0 , 0 , 0 );
161+ }
162+ ::-webkit-scrollbar {
163+ width : 10px ;
164+
165+ }
166+
167+
168+
169+
170+
171+ /* Handle */
172+ ::-webkit-scrollbar-thumb {
173+
174+ transition : 0.5s linear;
175+ background : linear-gradient (45deg , # f09433 0% , # e6683c 25% , # dc2743 50% , # cc2366 75% , # bc1888 100% )
176+
177+ }
178+
179+ ::-webkit-scrollbar-thumb : hover {
180+ background : linear-gradient (45deg , # af6d26 0% , # a34b2b 25% , # a01c30 50% , # 8d1847 75% , # 7c105a 100% )
181+ }
0 commit comments