-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
161 lines (138 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
149
150
151
152
153
154
155
156
157
158
159
@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Solitreo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,200&family=Solitreo&display=swap');
* {
margin: 0;
padding: 0;
}
.sidebar {
background-color: rgba(241, 248, 27, 0.534);
width: 350px;
font-family: "Merriweather Sans", sans-serif;
height: 116vh;
}
.main {
background-color: rgb(248, 248, 248);
width: 93vw;
}
.container {
display: flex;
height: 116vh;
}
.sidebar nav {
padding: 50px;
font-size: 20px;
}
.sidebar nav li {
list-style: none;
padding: 33px 0;
}
.sidebar nav li a{
text-decoration: none ;
color: rgb(60, 58, 58);
}
.Infocontainer{
background-color: rgb(248, 248, 248);
height: 68vh;
width:80vw;
margin: 66px auto;
display:flex;
justify-content: space-around;
}
.devInfo{
display: flex;
justify-content: center;
flex-direction: column;
}
.hello{
font-size: 70px;
font-family: 'Righteous', cursive;
}
.typewriter {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: .15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: orange; }
}
.name{
font-size: 50px;
height: 54px;
font-family: 'Solitreo', cursive;
}
.about{
margin-top: 15px;
height: 42px;
font-size: 26px;
font-family: 'Poppins', sans-serif;
}
.aboutInfo{
margin-top: 15px;
height: 80px;
font-size: 23px;
font-family: 'Poppins', sans-serif;
}
.aboutInfo p{
margin-top: 15px;
margin-left: 68px;
margin-right: 82px;
height: 80px;
font-size: 23px;
font-family: 'Poppins', sans-serif;
}
.button{
margin-top: 30px;
}
.button button {
border-radius: 26px;
padding: 10px;
color: azure;
font-size: 15px;
font-weight: bold;
background-color: rgb(52, 50, 50);
margin: 0px 20px 0px -2px ;
}
.button button a{
text-decoration: none ;
color: azure;
}
.button button:hover{
background-color: rgba(45, 46, 46, 0.729) ;
}
.devPic img{
height: 68vh;
}
.contactForm{
margin-top: 15px;
height: 42px;
}
.Aboutcontainer{
background-color: orangered;
height: 68vh;
width:80vw;
margin: 66px auto;
display:flex;
justify-content: space-around;
}
.Aboutcontainer .devPic{
margin-left: 662px;
}
.aboutme{
margin-top: 15px;
height: 42px;
font-size: 46px;
font-family: 'Righteous', cursive;
}