-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (129 loc) · 2.67 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
123
124
125
126
127
128
129
130
131
132
body {
background: whitesmoke;
font-weight: bold;
font-family: "century gothic";
}
h1 {
text-align: center;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
letter-spacing: 2px;
}
nav ul li a {
color: black;
text-decoration: none;
}
nav ul {
display: flex;
justify-content: end;
background: #ffd9a02f;
padding: 10px;
box-shadow: 2px 2px 3px black;
}
nav:hover {
box-shadow: 5px 5px 5px black;
}
.nav2 ul {
padding: 10px;
box-shadow: 2px 2px 3px black;
justify-content: space-evenly;
}
li {
list-style: none;
padding: 5px;
padding-left: 50px;
outline: 0;
background: transparent;
border: 0;
color: grey;
transition-property: transform, ease-in-out, 0.5s;
}
button:hover {
color: maroon;
text-decoration: underline;
cursor: pointer;
}
.img {
width: 400px;
height: 400px;
margin-top: 40px;
border-radius: 20%;
transition-property: transform;
transition-duration: 0.5s;
transition-timing-function: ease-in-out;
}
.img:hover {
transform: scale(110%);
}
#pic {
display: flex;
margin-top: 20px;
justify-content: space-evenly;
}
#hello {
line-height: 70px;
text-align: center;
margin-top: 10px;
background: #ffd9a02f;
padding: 50px;
box-shadow: 2px 2px 3px black;
border-radius: 50%;
scale: 90%;
transition-property: transform;
transition-duration: 0.5s;
transition-timing-function: ease-in-out;
}
#hello:hover {
transform: scale(110%);
}
#about {
background: #ffd9a02f;
padding: 20px;
box-shadow: 2px 2px 3px black;
margin-bottom: 35px;
margin-top: 35px;
transition-property: transform;
transition-duration: 0.5s;
transition-timing-function: ease-in-out;
width: 40%;
}
#about:hover {
transform: scale(110%);
}
#skills {
background: #ffd9a02f;
padding: 10px;
box-shadow: 2px 2px 3px black;
transition-property: transform;
transition-duration: 0.5s;
transition-timing-function: ease-in-out;
width: 40%;
margin-top: 35px;
margin-bottom: 36px;
}
#skills:hover {
transform: scale(110%);
}
#skills ul li {
list-style: disc;
}
#abt {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
#contact {
background: #ffd9a02f;
padding: 50px;
box-shadow: 2px 2px 3px black;
margin-left: 20px;
margin-right: 20px;
transition-property: transform;
transition-duration: 0.5s;
transition-timing-function: ease-in-out;
}
#contact:hover {
transform: scale(105%);
}
#img2 {
height: 25px;
}