-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2_655-3_000.css
More file actions
150 lines (131 loc) · 3.08 KB
/
Copy path2_655-3_000.css
File metadata and controls
150 lines (131 loc) · 3.08 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
position: relative;
background-image: url('bg.png');
background-repeat: no-repeat;
background-size: cover;
padding: 10px;
font-family: Bookman, serif;
margin-top: -2px; /* Move down by 350 pixels */
}
header h1 {
-webkit-text-fill-color: #E6133D;
-webkit-text-stroke: 1.5px #000;
font-size: 350%;
margin: 0;
margin-left: 240px;
position: relative;
z-index: 5;
text-shadow: 0 0 20px rgba(0, 0, 0, 1.5), 2px 2px 35px rgba(0, 0, 0, 1.5); /* Add the gray shadow */
}
nav {
position: relative;
z-index: 2;
background:
linear-gradient(27deg, #151515 5px, transparent 5px) 0 5px,
linear-gradient(207deg, #151515 5px, transparent 5px) 10px 0px,
linear-gradient(27deg, #222 5px, transparent 5px) 0px 10px,
linear-gradient(207deg, #222 5px, transparent 5px) 10px 5px,
linear-gradient(90deg, #1b1b1b 10px, transparent 10px),
linear-gradient(#1d1d1d 25%, #1a1a1a 25%, #1a1a1a 50%, transparent 50%, transparent 75%, #242424 75%, #242424);
background-color: #131313;
background-size: 20px 20px;
padding: 10px;
text-align: center;
margin-top: 0; /* Move down by 350 pixels */
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
margin-right: 10px;
position: relative;
}
nav ul li a {
display: block;
padding: 10px;
color: #E6133D;
font-weight: bold;
font-size: 130%;
text-decoration: none;
transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
nav ul li:hover a {
color: #000000;
background-color: #E6133D;
}
nav ul li:hover::before {
content: "";
position: absolute;
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
background-color: #E6133D;
z-index: -1;
}
main {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
.profile-image {
width: 150px;
height: 150px;
border-radius: 70%;
object-fit: cover;
transition: transform 0.7s ease-in-out;
outline: 4px solid #fff;
position: absolute;
top: 75%;
left: 3%;
z-index: 20;
}
.profile-image:hover {
transform: scale(1.25);
}
.full-width-image {
width: 100%;
height: auto;
}
.social-container {
position: absolute;
top: 90%;
left: 85%;
transform: translate(-50%, -50%);
display: flex;
justify-content: center;
align-items: center;
z-index: 20;
}
.social-icon {
display: inline-block;
margin-right: 10px;
}
.social-icon img {
width: 40px;
height: 40px;
object-fit: cover;
transition: transform 0.7s ease-in-out;
}
.social-icon img:hover {
transform: scale(1.25);
}
#model-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50vh;
}