-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.css
131 lines (119 loc) · 2.11 KB
/
portfolio.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
*{
padding:0;margin:0;box-sizing: border-box;
}
.tapestry{
font-family: 'Tapestry', cursive;
}
.brush{
font-size:50px;
font-family: 'Water Brush', cursive;
}
header{
width:100%;
height:100vh;
position:relative;
}
nav{
width:100%;
height: 100px;
display:flex;
justify-content: space-between;
align-items:center;
padding:0px 100px;
}
.menu a{
text-decoration: none;
padding:10px 15px;
font-size:20px;
color:white;
font-style: bold;
}
.menu a:last-child{
background:blue;
color:white;
border-radius:8px;
}
.header-text{
max-width:500px;
position:absolute;
top:30%;
left:10%;
z-index: -1;
}
.header-text h1{
text-decoration: none;
font-size:3em;
color:rgb(2, 2, 2);
font-family: 'Ms Madi', cursive;
}
.header-text p{
font-size: 20px;
margin-bottom:30px;
}
.header-text a{
text-decoration: none;
background:blue;
color:white;
font-size:20px;
padding :10px 20px;
font-family:'Times New Roman', Times, serif;
border-radius:8px;
}
#more{
background:transparent;
color:red;
box-shadow: 2px 0px 0px grey;
}
.icon{
position:fixed;
top:50%;
left:0;
transform:translateY(-50%);
display: flex;
flex-direction:column;
}
.icon i{
color:white;
padding:10px;
font-size:20px;
margin:5px 0px;
background:blue;
}
.icon i:hover{
background:transparent;
transition:0.4s;
border:1px solid black;
color:black;
border-radius:8px;
}
.box{
width:60%;
height:70%;
position:absolute;
top:0;
right:0;
background:rgb(238, 250, 9);
z-index: -2;
}
#mukesh{
width: 390px;
height:100;
position:absolute;
right:10%;
top:0;
z-index:-1;
}
.header-text a:hover{
background-color: white;
color:black;
}
.main{
display: flex;
margin:auto;
width:100vw;
height:500px;
top: 100px;
background:rgb(238, 250, 9);
border-radius:16px;
padding:10px;
}