-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (91 loc) · 1.27 KB
/
Copy pathstyle.css
File metadata and controls
105 lines (91 loc) · 1.27 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
body {
font-family: "Jersey 15", sans-serif;
background-color: #F2E5E5;
margin: 0;
padding: 0;
}
p {
font-family: "Jersey 15", sans-serif;
position: absolute;
top: 200px;
left: 450px;
font-size: 43px;
}
.navbar {
font-family: "Jaini Purva", serif;
position: absolute;
top: 400px;
left: 450px;
font-size: 23px;
color: #257980;
text-decoration: none;
}
.navbar a:hover {
text-decoration: none;
color: #90752B;
}
#lottie-container {
width: 1500px;
height: 800px;
}
.dp img {
display: block;
width: 80px;
border-radius: 100px;
margin: 100px auto;
left: -800px;
}
.sm {
display: flex;
gap: 20px; /* space between icons */
position: absolute;
top: 130px;
left: 850px;
}
.sm img {
width: 20px;
height: 20px;
cursor: pointer;
transition: transform 0.2s ease;
}
.sm img:hover {
transform: scale(1.2);
}
/* Mobile responsive styles */
@media only screen and (max-width: 768px) {
p {
position: relative;
top: 20px;
left: 0;
font-size: 20px;
text-align: center;
}
.navbar {
position: relative;
top: 0;
left: 0;
font-size: 18px;
text-align: center;
}
#lottie-container {
width: 90%;
height: auto;
margin: 20px auto;
}
.dp img {
width: 150px;
margin: 20px auto;
left: 0;
}
.sm {
position: relative;
top: 0;
left: 0;
justify-content: center;
margin: 10px 0;
}
.sm img {
width: 30px;
height: 30px;
}
}