-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
148 lines (147 loc) · 2.85 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
body{
margin: 0;
padding: 0;
min-height: 100vh;
background-image: linear-gradient(80deg, rgb(5, 124, 172), rgb(199, 10, 114));
overflow: hidden;
font-family: 'poppins';
}
#up{
position: absolute;
height: 800px;
width: 800px;
border-radius: 50%;
background-image: linear-gradient(80deg, rgb(5, 124, 172), rgb(43, 247, 202, 0.5));
filter: blur(80px);
animation: down 40s infinite;
}
#down{
position: absolute;
right: 0;
height: 500px;
width: 500px;
border-radius: 50%;
background-image: linear-gradient(80deg, rgba(245, 207, 82, 0.8), rgba(199, 10, 114));
filter: blur(80px);
animation: up 30s infinite;
}
#left{
position: absolute;
height: 500px;
width: 500px;
border-radius: 50%;
background-image: linear-gradient(80deg, rgb(5, 124, 172), rgba(183, 253, 52, 0.8));
filter: blur(80px);
animation: left 30s 1s infinite;
}
#right{
position: absolute;
height: 500px;
width: 500px;
border-radius: 50%;
background-image: linear-gradient(80deg, rgba(26, 248, 18, 0.6), rgba(199, 10, 114, 0.5));
filter: blur(80px);
animation: right 40s .5s infinite;
}
nav{
display: flex;
align-items: center;
justify-content: space-between;
height: 50px;
backdrop-filter: blur(5px);
padding: 20px 30px;
color: #fff;
}
.nav-list{
display: flex;
align-items: center;
justify-content: space-evenly;
list-style-type: none;
}
.nav-list li{
margin: 0 20px;
font-size: 15px;
cursor: pointer;
}
.nav-list button{
padding: 10px 20px;
margin: 0 20px;
border: 1px solid #fff;
background-color: transparent;
color: #fff;
font-family: inherit;
transition: all ease-in .4s;
cursor: pointer;
}
.nav-list button:hover{
background-color: #fff;
color: #000;
}
#details{
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 80vh;
z-index: 999;
text-align: center;
color: #ebe7e7;
}
#details h1{
font-size: 70px;
text-align: center;
line-height: 0px;
text-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
}
#details span{
background-color: transparent;
border: solid 2px #fff;
font-size: 70px;
font-weight: 600;
padding: 0 20px;
}
#details p{
width: 50%;
}
.social-icons{
position: relative;
text-align: center;
}
.social-icons a{
color: #fff;
margin: 0 20px;
font-size: 20px;
}
@keyframes down{
0%, 100%{
top: -100px;
}
70%{
top: 700px;
}
}
@keyframes up{
0%, 100%{
bottom: -100px;
}
70%{
bottom: 700px;
}
}
@keyframes left{
0%, 100%{
left: -100px;
}
70%{
left: 1300px;
}
}
@keyframes right{
0%, 100%{
right: -100px;
}
70%{
right: 1300px;
}
}