forked from ashu3752/Hacktober2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
157 lines (135 loc) · 2.82 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
149
150
151
152
153
154
155
156
157
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
background-color: #E5E5E5;
min-height: 100vh;
border: solid 12px #1D1E4C;
}
.content{
max-width: 900px;
margin: 0 auto;
}
.img_box,img{
width: 300px;
height: 320px;
}
.img_box{
filter: brightness(120%);
filter: contrast(120%);
filter: drop-shadow(10px 10px 10px silver);
border: solid goldenrod;
border-radius: 50%;
overflow: hidden;
}
.top_section{
display: flex;
justify-content: space-between;
margin-top: 100px;
margin-bottom: 30px;
align-items: flex-end;
}
.top_section h1{
position: relative;
left: 100px;
margin-bottom: 5px;
font-size: 50px;
font-weight: 500;
color:#1D1E4C;
font-family: 'Noto Sans', sans-serif;
}
.top_section a{
text-decoration: none;
}
.top_section h1:hover{
margin-bottom: 5px;
font-size: 50px;
font-weight: 500;
color: crimson;
cursor: pointer;
font-family: 'Noto Sans', sans-serif;
}
.top_section h4{
position: relative;
left: 100px;
text-align: end;
font-size: 25px;
font-weight: bold;
font-family: 'Nunito', sans-serif;
}
.about_box {
display: inline-block;
}
@keyframes typing {
from {width: 0}
to {width: 76%}
}
@keyframes blinkTextCursor{
from{border-right-color: #1D1E4C}
to{border-right-color: transparent;}
}
.about_box h2{
overflow: hidden;
width: 0;
border-right: 0.07em solid #1D1E4C;
white-space: nowrap;
font-size: 70px;
font-family: 'Noto Sans', sans-serif;
font-weight: 400;
color: #1D1E4C;
margin-bottom: 20px;
animation: typing 4s normal steps(42,end) both, blinkTextCursor 500ms steps(44) infinite normal;
}
.about_box p{
font-size: 20px;
line-height: 30px;
letter-spacing: 1.2px;
text-align: justify;
font-family: 'Nunito', sans-serif;
}
.about_box{
margin-top: 50px;
}
.legacy_box{
margin-top: 50px;
font-weight: bold;
font-family: 'Nunito', sans-serif;
font-size: 30px;
color: #1D1E4C;
}
.achievements li{
margin: 10px 0 0 50px;
font-size: 15px;
color: black;
letter-spacing: 1.2px;
font-weight: normal;
text-align: justify;
}
footer{
position: relative;
left: 180px;
margin: 50px 0 20px 0;
text-align: end;
font-size: 15px;
font-family: "Nunito";
font-weight: bold;
}
footer .link{
color: crimson;
text-decoration: none;
}
footer .name{
color: crimson;
text-decoration: none;
}
footer .my_name{
position: relative;
left: -180px;
margin: 100px 0 20px 0;
text-align: center;
font-size: 18px;
font-family: "Nunito";
font-weight: bold;
}