-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (59 loc) · 1.34 KB
/
Copy pathstyle.css
File metadata and controls
66 lines (59 loc) · 1.34 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
/* Set up the whole background, font, and text color */
body {
margin: 0;
font-family: 'Inter', sans-serif;
background: #70418f url('https://f2.toyhou.se/file/f2-toyhou-se/images/99445590_FpkxA8IkwD5V7hZ.png') no-repeat center center fixed;
background-size: cover;
color: rgb(255, 255, 255);
text-align: center;
}
/* Navigation bar styling */
nav {
position: fixed;
top: 0;
width: 100%;
padding: 20px;
background: rgb(0, 0, 0);
display: flex;
justify-content: center;
gap: 40px;
font-size: 18px;
z-index: 10;
}
/* Navigation links */
nav a {
color: white;
text-decoration: none;
transition: 0.3s;
}
nav a:hover {
color: #c390fe;
text-shadow: 0 0 10px #c390fe;
}
/* Main container box */
.container {
background: rgb(0, 0, 0);
margin: 150px auto 50px auto;
padding: 30px;
border-radius: 20px;
max-width: 800px;
box-shadow: 0 0 20px #c390fe;
}
/* Profile image (circle) */
.profile-img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 20px;
border: 3px solid #c390fe;
box-shadow: 0 0 20px #c390fe;
}
/* Any other images */
img {
max-width: 100%;
height: auto;
margin-top: 20px;
border-radius: 10px;
box-shadow: 0 0 20px #c390fe;
}