-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (94 loc) · 1.55 KB
/
styles.css
File metadata and controls
109 lines (94 loc) · 1.55 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
html {
scroll-behavior: smooth;
}
body {
margin: 0;
background-color: #151514;
font-family: "MS UI Gothic", sans-serif;
overflow-x: hidden; /* Hide horizontal scrollbar */
overflow-y: -moz-scrollbars-none; /* Hide scrollbar for Firefox */
}
body::-webkit-scrollbar {
width: 0.5em;
}
h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 2em; /* Adjust the font size as needed */
color: #fff;
text-align: center;
}
.menu {
position: fixed;
top: 20px;
right: 20px;
z-index: 3;
}
.menu a {
margin: 10px;
text-decoration: none;
color: #fff;
font-size: 1.5em;
}
table {
border-collapse: collapse;
background-color: #151514;
width: 100%;
}
td {
border: 1px solid white;
color: white;
}
th {
text-align: center;
border: 1px solid white;
color: white;
}
#network {
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
.invert-image {
filter: invert(1);
}
#skills {
scroll-margin-top: 100px;
position: absolute;
top: 110%;
left: 50%;
width: 600px;
transform: translateX(-50%);
z-index: 2;
padding-bottom: 500px;
text-align: center;
}
#skills td {
width: 110px;
padding: 10px 10px 10px 10px;
}
#skills img {
width: 65px;
height: 65px;
}
#projects {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 100px 50px;
scroll-margin-top: 100px;
position: absolute;
top: 210%;
left: 50%;
transform: translateX(-50%);
z-index: 2;
padding-bottom: 500px;
text-align: center;
}
#projects th,
td {
padding: 10px;
text-align: center;
}