-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (105 loc) · 1.99 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
*{
box-sizing: border-box;
margin: 0;
text-decoration: none;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0 200px 0 200px;
/* background-color: rgb(213, 185, 185); */
}
.greet{
font-size: 40px;
color: #fd8923;
margin-top: 50px;
font-weight: bold;
}
.content-title{
font-size: 24px;
margin-top: 30px;
}
.content{
font-size: 18px;
margin-top: 20px ;
text-align: center;
}
.profile-pic{
height: 400px;
width: 400px;
background-image: url(images/vishal_pic__1_-removebg-preview.png);
background-size: contain;
background-position: 43px 13px;
background-repeat: no-repeat;
border-radius: 50%;
background-color: rgb(244, 244, 243);
margin-top: 50px;
}
.my-name{
font-size: 24px;
margin-top: 15px;
color: #fd8923;
font-weight: bold
}
.item-container{
display: flex;
gap: 60px;
margin-top: 60px;
}
.item{
height: 100px;
width: 100px;
font-size: 20px;
text-align: center;
padding-top:40px;
background-color: wheat;
border-radius: 50%;
color: rgba(0, 0, 0, 0.855);
}
.item-1{
background-color: #7878ebe9;
font-weight: bold;
}
.item-2{
background-color: #feb16ffd;
font-weight: bold;
}
.item-3{
background-color: aqua;
font-weight: bold;
}
.item-4{
background-color: bisque;
font-weight: bold;
}
.icon-container{
display: flex;
margin-top: 60px;
gap: 30px;
margin-bottom: 20px
}
.fa-brands{
height: 35px;
width: 35px;
font-size: 30px;
padding-top: 3px;
text-align: center;
margin-top: 15px;
color: rgba(0, 0, 0, 0.839);
border-radius: 50%;
}
.footer{
color: white;
background-color: rgba(0, 0, 0, 0.756);
height: 90px;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
}
.hover:hover{
background-color: #e1ece1;
box-shadow: 0 0 12px rgba(80, 74, 74, 0.2);
}