forked from Kushal997-das/Project-Guidance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.css
103 lines (83 loc) · 1.92 KB
/
input.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
*{
scroll-behavior: smooth;
}
nav{
z-index:1000;
}
body {
background-color: #000000;
color: #e2e8f0;
scroll-behavior: smooth;
overflow-x: hidden;
}
h1{
overflow: hidden;
}
#particles-js{
width: 100%;
height: 100%;
background-size: cover;
position: absolute;
background-repeat: no-repeat;
}
.neon-text {
text-shadow: 0px -5px 10px rgba(0,209,255,0.63);
}
.neon-border {
border: 2px solid;
border-color: #ffa500;
animation: neon 1.5s infinite alternate;
}
@keyframes neon {
to {
border-color: #ff4500;
}
}
.hover-effect {
transition: all 0.3s ease-in;
}
.hover-effect:hover {
text-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff, 0 0 15px #00aaff, 0 0 20px #00aaff, 0 0 25px #00aaff, 0 0 30px #00aaff, 0 0 35px #00aaff;
}
.banner {
max-width: 100%;
height: auto;
}
/* .nav-item:hover {
text-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff, 0 0 15px #00aaff, 0 0 20px #00aaff, 0 0 25px #00aaff, 0 0 30px #00aaff, 0 0 35px #00aaff;
} */
.list-disc{
z-index: 10;
}
/* Custom scrollbar styles */
body::-webkit-scrollbar {
width: 12px; /* Adjust the width of the scrollbar */
}
body::-webkit-scrollbar-track {
background: #000000; /* Background of the scrollbar track */
}
body::-webkit-scrollbar-thumb {
background-color: #00aaff; /* Color of the scrollbar thumb */
border-radius: 20px; /* Rounded corners for the scrollbar thumb */
border: 3px solid #000000; /* Border around the scrollbar thumb */
}
/*
.domains{
align-items: center;
justify-content: space-around;
} */
.backdrop-blur-lg {
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
}
.navcontainer {
background-color: rgba(55, 65, 81, 0.9);
}
@media (min-width: 1024px) {
.top-navbar {
display: inline-flex !important;
}
}