-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
107 lines (106 loc) · 1.93 KB
/
index.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
@font-face {
font-family: biggerside;
src: url(/BigersideExpanded-7O9Z4.otf);
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
height: 100%;
width: 100%;
}
#main{
width: 100%;
height: 100%;
background-color: #000f1b;
position: relative;
}
#name{
color: white;
width: 650px;
height: 80px;
position: absolute;
top: 280px;
left: 200px;
font-size: 50px;
font-family: "biggerside";
}
#effect{
width: 50%;
height: 50px;
color: white;
position: absolute;
top: 350px;
left: 215px;
font-size: 25px;
font-family: "biggerside";
}
#typewrite{
color: rgba(67, 206, 95, 0.67);
border: transparent dotted 2px;
box-shadow: #ffff;
animation: animate 50ms ease-in-out infinite alternate;
}
@keyframes animate{
0%{
text-shadow: 0 0 20px rgba(67, 206, 95, 0.67);
}
100%{
text-shadow: 0 0 30px rgba(67, 206, 95, 0.67);
}
}
#bar{
width: 1005;
height: 50px;
position: absolute;
top: 450px;
left: 150px;
display: flex;
}
#items{
color: white;
}
#items a {
text-decoration: none;
color: white;
margin-left: 60px;
font-size: 22px;
transition: color ease-in 0.2s;
}
#items a:hover{
color: rgb(196, 80, 80);
}
#links{
width: 200px;
height: 200px;
position: absolute;
top: 450px;
left: 220px;
}
#git{
background-image: url(/1.png);
background-size: cover;
width: 30px;
height: 30px;
margin-top: 80px;
}
#link{
background-image: url(/3.png);
background-size: cover;
width: 30px;
height: 30px;
position: relative;
top: -28px;
left: 50px;
}
#gmail{
background-image: url(/2.png);
background-size: cover;
width: 30px;
height: 30px;
position: relative;
top: -57px;
left: 99px;
}