-
Notifications
You must be signed in to change notification settings - Fork 0
/
Portfolio_Website.css
128 lines (107 loc) Β· 2.66 KB
/
Portfolio_Website.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
*{
margin: 0;
padding: 0;
}
body{
background-color: rgb(11 8 18);
font-family: Arial, Helvetica, sans-serif;
}
.navbar{
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
padding: 0 100px !important;
}
.navbar, .logo h1{
color: white;
cursor: pointer;
}
.navbar, .menu{
display: flex;
column-gap: 30px;
}
.navbar, .menu a{
color: white;
text-decoration: none !important;
padding: 10px;
}
.navbar, .menu .home{
color: cyan;
}
.menu a:hover{
border: 1px solid cyan;
}
.hero-box{
display: flex;
justify-content: center;
align-items: center;
column-gap: 50px;
margin-top: 50px;
}
.hero-box .txt-left{
color: white;
width: 393px;
height: 337px;
display: flex;
flex-direction: column;
justify-content: center;
padding: 30px;
}
.txt-left h1{
padding-top: 10px;
}
.txt-left .developer-txt{
padding-top: 10px;
}
.txt-left p{
padding-top: 10px;
}
.txt-left .social-media{
padding-top: 13px;
}
.txt-left .social-media{
display: flex;
column-gap: 20px;
}
.txt-left .social-media i{
font-size: 37px;
cursor: pointer;
transition: all ease 0.5s;
}
.txt-left .social-media i:hover{
color: cyan;
}
.txt-left button{
padding: 12px;
width: 125px;
border-radius: 20px;
border: none;
margin-top: 17px;
background-color: cyan;
box-shadow: rgba(0, 255, 242, 0.25) 0px 54px 55px, rgba(0, 255, 255, 0.12) 0px -12px 30px, rgba(0, 255, 200, 0.12) 0px 4px 6px, rgba(8, 231, 213, 0.17) 0px 12px 13px, rgba(2, 247, 185, 0.09) 0px -3px 5px;
cursor: pointer;
transition: all ease 0.5s;
}
.txt-left button:hover{
background-color: rgb(255, 255, 255);
box-shadow: rgba(0, 255, 242, 0.25) 0px 54px 55px, rgba(0, 255, 255, 0.12) 0px -12px 30px, rgba(0, 255, 200, 0.12) 0px 4px 6px, rgba(8, 231, 213, 0.17) 0px 12px 13px, rgba(2, 247, 185, 0.09) 0px -3px 5px;
cursor: pointer;
}
.hero-box .img-right{
width: 393px;
height: 337px;
display: flex;
justify-content: center;
align-items: center;
}
.hero-box .img-right img{
border-radius: 50%;
cursor: pointer;
transition: all ease 0.5s;
box-shadow: rgba(0, 269, 219, 0.25) 0px -21px 139px, rgba(0, 255, 255, 0.12) 0px -12px 30px, rgba(0, 255, 200, 0.12) 0px 4px 6px, rgba(8, 231, 213, 0.17) 0px 31px 15px, rgba(2, 247, 185, -0.91) 0px -3px 18px;
}
.hero-box .img-right img:hover{
cursor: pointer;
box-shadow: rgba(0, 102, 255, 0.12) 0px -21px 139px, rgba(0, 255, 255, 0.12) 0px -12px 30px, rgba(0, 102, 255, 0.12) 0px 4px 6px, rgba(8, 231, 213, 0.17) 0px 31px 15px, rgba(2, 247, 185, -0.91) 0px -3px 18px;
}