-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
127 lines (118 loc) · 2.17 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
*{
padding: 0px;
margin: 0px;
}
.navbar{
background-color: dimgray;
height: 45px;
display:flex;
justify-content: flex-end;
align-items: center;
padding:2px 10px;
}
.navlist{
display: flex;
align-items: center;
column-gap: 20px;
}
.navlist a{
text-decoration: none;
color:black;
width:80px;
padding: 2px 15px;
border: 2px solid black;
text-align: center;
border-radius: 15px;
}
.navlist a:hover{
background-color: black;
color: whitesmoke;
}
.navprofile{
width :45px;
height:45px;
border-radius:100%;
padding: 0px 05px;
}
.menuicon{
display:none;
}
.profilebody{
height:90vh;
background-color: darkgrey;
display: flex;
align-items: center;
justify-content: space-around;
}
.profileimage{
height:500px;
width:350px;
}
.text1{
font-size: 30px;
color: aliceblue;
}
.text1::first-letter{
font-size: 50px;
color: black;
}
.text2{
font-size:40px;
color: rgb(10, 10, 10);
font-style:italic;
}
.skillslist{
display: flex;
font-size: 30px;
column-gap: 20px;
}
.skillslist p{
padding:3px 15px;
text-align:center;
width:100px;
background-image: linear-gradient( to right,black,dimgray,white);
border-radius: 20px;
}
.aboutmebody{
width:100%;
margin:15px auto;
padding:5px auto;
}
.title{
font-size: 25px;
color: black;
text-decoration: underline 3px red;
text-align: center;
}
.aboutmeinfo{
margin-bottom: 50px;
margin-left: 50px;
}
@media screen and (max-width:700px) {
.navbar.active{
height:200px;
align-items:flex-start;
justify-content: space-around;
}
.navlist{
display:none;
}
.navbar.active .navlist{
display:grid;
row-gap: 15px;
}
.menuicon{
display: block;
position: absolute;
left:15px;
top:6px;
}
.menuicon i{
color: black;
font-size: 32px;
}
.navprofile{
position:absolute;
right:20px;
}
}