-
-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathApp.css
More file actions
131 lines (112 loc) · 2.81 KB
/
App.css
File metadata and controls
131 lines (112 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300&display=swap');
html,
body {
font-family: 'Merriweather Sans', sans-serif;
}
/* Performance optimizations for animations */
@keyframes pulse {
0%,
100% {
opacity: 0.7;
transform: scale(1); /* Use transform for hardware acceleration */
}
50% {
opacity: 1;
transform: scale(1.02); /* Subtle scale change for visual interest */
}
}
/* existing styles */
@media (max-width: 768px) {
.App > div {
margin-left: 0px;
}
}
::-webkit-scrollbar {
width: 0.8rem;
}
::-webkit-scrollbar-thumb {
background: rgb(41, 54, 81);
border: 2px solid transparent;
border-radius: 8px;
background-clip: content-box;
}
.skills-container::-webkit-scrollbar {
width: 10px;
height: 5px;
}
.skills-container::-webkit-scrollbar-track {
background: var(--secondary-color);
}
.skills-container::-webkit-scrollbar-thumb {
background: var(--primary-color);
border-radius: 5px;
}
/* div .gt_float_switcher {
font-size: 14px;
border-radius: 10px;
}
.language-dropdown .gtranslate_wrapper {
max-height: 200px;
overflow-y: auto;
} */
/* .hero-section {
background: radial-gradient(circle, rgba(0, 0, 0) 1px, transparent 1px),
radial-gradient(circle, rgb(0, 0, 0) 1px, transparent 1px);
background-position: 0 0, 25px 25px;
background-size: 50px 50px;
z-index: -1;
} */
.background-wrapper {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-size: 40px 40px;
background-image:
linear-gradient(to right, rgba(0, 62, 81, 0.251) 1px, transparent 1px),
linear-gradient(to bottom, rgba(0, 62, 81, 0.251) 1px, transparent 1px);
background-color: #091224; /* Adjust color as desired */
}
.background-wrapper1 {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
background-size: 40px 40px;
background-image:
linear-gradient(to right, rgba(0, 62, 81, 0.251) 1px, transparent 1px),
linear-gradient(to bottom, rgba(0, 62, 81, 0.251) 1px, transparent 1px);
background-color: #091224; /* Adjust color as desired */
}
.globe-container {
width: 600px;
height: 600px;
margin: 0 auto;
}
@media (max-width: 768px) {
.App {
width: 100vw; /* Ensure exact viewport width */
max-width: 100vw;
overflow-x: hidden;
padding-left: 12px;
padding-right: 12px;
}
.App > div {
width: 100% !important;
margin-left: 0 !important;
padding-left: 0 !important;
padding-right: 0 !important;
border: none; /* Ensure no border is present */
}
.App .w-full {
width: 100% !important;
padding-left: 0 !important;
padding-right: 0 !important;
border: none; /* Ensure no border is present */
}
.profile-card {
margin: 12px 0;
}
}