-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
182 lines (131 loc) · 2.92 KB
/
style.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* @import url('https://fonts.googleapis.com/css2?family=Fresca&display=swap'); */
* {
font-family: 'Fresca', sans-serif;
}
@font-face {
font-family: 'Fresca', sans-serif;
src: url('assets/Font/Fresca-Regular.ttf');
}
/* Initiated with Dark Mode */
body {
background-color: black;
color: white;
background-image: url('Background/galaxy.png');
background-repeat: repeat;
background-size: 100vw;
scroll-behavior: smooth;
}
/* Transparent Scrollbar */
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-thumb {
background: rgba(90, 90, 90, 0);
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.2);
}
/* Navigation Menu Start */
.container {
display: flex;
justify-content: space-evenly;
}
.container .container-menu ul {
display: flex;
}
.container .container-menu ul li {
padding: 0px 20px;
list-style: none;
font-size: 30px;
}
.container .container-menu ul li a {
color: inherit;
text-decoration: none;
}
.container .container-menu ul li a:hover {
color: greenyellow;
}
/* Navigation Menu End */
/* Home Layout Start */
.homelayout {
display: flex;
justify-content: space-between;
padding: 0px 20px;
align-items: center;
margin-top: 5%;
}
.homelayout .aboutme p{
font-size: 40px;
opacity: .85;
}
.homelayout .aboutme .hey {
font-size: 42px;
opacity: .9;
}
.homelayout .homegif {
height: 400px;
}
/* Home Layout End */
/* Skills & Certificates */
.skills {
display: flex;
}
/* Skills & Certificates End */
/* Projects */
.projects {
display: flex;
justify-content: center;
}
.projects .projectselect ul{
display: flex;
}
.projects .projectselect ul li {
list-style: none;
padding: 0px 21px;
}
.projects .projectselect ul li button {
font-size: 26px;
background-color: rgba(0, 242, 255, 0.714);
color: white;
padding: 10px 21px;
border-radius: 50px;
transition: font-weight 0s, background-color 1.5s, color 0.5s;
}
.projects .projectselect ul li button:hover {
background-color: rgb(255, 255, 0, 0.5);
color: black;
font-weight: 600;
}
/* Projects End */
/* Contact */
.contact {
display: flex;
justify-content: space-between;
}
/* Contact End */
/* Footer */
.footer {
display: inherit;
padding: 5px;
background-color: rgba(19, 19, 19, 0.5);
}
.footer .footer-top {
font-size: 20px;
text-align: center;
}
.footer .footer-bottom {
font-size: 16px;
text-align: center;
margin-top: -19px;
}
.footer .footer-bottom a {
color: inherit;
text-decoration: none;
font-size: 18px;
}
.footer .footer-bottom a:hover {
color: greenyellow;
}
/* Footer End */
/* Responsive Section */