-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle1.css
132 lines (130 loc) · 2.31 KB
/
style1.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
body{
padding: 0;
margin: 0;
height: 100vh;
}
.container{
display: grid;
grid-template-rows: 80px 600px 700px 200px ;
background-color: #021024;
color: white;
gap: 0px ;
text-align: center;
padding: 0;
margin: 0 auto;
}
.header{
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
background-color:#021024 ;
position:fixed;
border-bottom: 1px solid rgb(127, 187, 255);
}
#logo{
height: 80px;
margin-left: 20px;
}
.menu{
display: inline-block;
font-size: 18px;
margin: 10px;
margin-right: 40px;
text-decoration: none;
color: white;
transform: color 0.1s;
}
.menu:hover{
color: rgb(127, 187, 255);;
}
.heroimg{
width: 100%;
height: 600px;
object-fit: cover ;
position: relative;
top: 1px;
}
.text{
position: absolute;
top: 40%;
left: 32%;
text-align: center;
color: rgb(182, 216, 254);
font-size: 24px;
}
span{
color: white;
}
.button{
margin-top: 12px;
border-radius: 23px;
color: white;
background-color: #04aa6d;
padding: 10px 20px;
font-size: 12px;
cursor: pointer;
outline: none;
box-shadow: 2px 3px #434344;
}
.button:hover{background-color: #04734a;}
.button:active{
background-color: #025a39;
transform: translate(4px);
}
#About{
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 30px 600px;
text-align: left;
font-size: 20px;
}
.left{
margin-left: 20px;
}
.lefth3{
margin-top: 14%;
}
.title{
margin-top: 100px;
text-align: center;
grid-column-start: 1;
grid-column-end: 3;
}
.me{
margin-top: 100px;
}
.skillLogo{
height: 350px;
margin-left: 15%;
margin-top: 50px;
}
footer{
background-color: rgb(127, 187, 255);
}
#Con{
display: flex;
flex-direction: column;
}
#Contact{
display: flex;
gap:80px;
justify-content: center;
text-align: center;
align-items: center;
font-size: 1.5rem;
height: 200px;
margin: 0;
}
.link{
text-decoration: none;
color: white;
}
.link:hover{
color: #021024 ;
}
#copy{
text-align: end;
font-size: 0.9rem;
margin:0px 10px;
}