-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
154 lines (128 loc) · 3.12 KB
/
styles.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: black;
color: red;
font-family: Arial, sans-serif;
cursor: url('https://raw.githubusercontent.com/dkulthia/dkulthia.github.io/refs/heads/main/cursor.png'), auto;
}
canvas {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
cursor: url('https://raw.githubusercontent.com/dkulthia/dkulthia.github.io/refs/heads/main/cursor.png'), auto;
}
.content {
position: relative;
z-index: 1;
text-align: center;
padding: 20px;
}
#about {
text-align: center;
}
#projects {
text-align: center;
}
#achievements{
text-align: center;
}
#contact {
text-align: center;
}
#nav-links:hover {
cursor: url('https://raw.githubusercontent.com/dkulthia/dkulthia.github.io/refs/heads/main/cursor.png'), auto;
}
#btn {
color: black;
background: #8B0000;
border: 2px solid transparent;
transition: all 0.3s ease;
}
#btn:hover {
color: #8B0000;
background: transparent;
border-color: #8B0000;
cursor: url('https://raw.githubusercontent.com/dkulthia/dkulthia.github.io/refs/heads/main/cursor.png'), auto;
}
.profile-box {
width: 200px;
height: 150px;
border-radius: 20px;
overflow: hidden;
margin: 0 auto 20px;
}
.profile-box img {
width: 100%;
height: auto;
border-radius: 0;
}
#project-cards:hover {
cursor: url('https://raw.githubusercontent.com/dkulthia/dkulthia.github.io/refs/heads/main/cursor.png'), auto;
}
#certificate{
height: 400px;
}
#certificate:hover{
cursor: url('https://raw.githubusercontent.com/dkulthia/dkulthia.github.io/refs/heads/main/cursor.png'), auto;
}
form input,
form textarea {
background-color: transparent;
border: 2px solid red;
color: red; /* <-- makes the typed text red */
}
form input::placeholder,
form textarea::placeholder {
color: red;
opacity: 1;
}
form input:focus,
form textarea:focus {
outline: none;
border-color: #ff4d4d;
box-shadow: 0 0 5px red;
}
form input:hover,
form textarea:hover {
cursor: url('https://raw.githubusercontent.com/dkulthia/dkulthia.github.io/refs/heads/main/cursor.png'), auto;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px #000 inset !important; /* Background color */
-webkit-text-fill-color: red !important; /* Text color */
caret-color: red !important;
border: 2px solid red;
transition: background-color 5000s ease-in-out 0s;
}
input:-moz-autofill,
textarea:-moz-autofill,
select:-moz-autofill {
box-shadow: 0 0 0px 1000px #000 inset !important;
color: red !important;
caret-color: red !important;
border: 2px solid red;
}
#social-box{
border-radius: 20px;
border-color: #FF0000;
}
#icons{
color: black;
background: #8B0000;
border: 2px solid transparent;
transition: all 0.3s ease;
}
#icons:hover {
color: #8B0000;
background: transparent;
border-color: #8B0000;
cursor: url('https://raw.githubusercontent.com/dkulthia/dkulthia.github.io/refs/heads/main/cursor.png'), auto;
}