-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (74 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
83 lines (74 loc) · 1.36 KB
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
body{
background-color: rgb(174, 67, 67);
}
header {
border: 1px solid rgb(79, 16, 16);
padding: 30px;
text-align: center;
border-radius: 20px;
display: flex;
flex-direction: column;
}
h1 {
color: rgb(82, 14, 14) ;
}
p {
font-style: italic;
}
img{
width: 40%;
border: 3px solid rgb(144, 22, 22);
border-radius: 40% 0;
margin-bottom: 30px;
display: block;
margin: 0 auto;
}
img:hover
{
transform: scale(1.1);
transition: all .3s ease-in-out;
}
button {
margin-top: 30px;
padding: 10px 20px;
background-color: rgb(106, 42, 42);
color: aliceblue;
border: none;
border border-radius: 40px 0 40px 0;
cursor:pointer ;
}
button:hover
{
transform: scale(1.1);
transition: all .3s ease-in-out;
background-color: rgb(213, 148, 148);
color: rgb(255, 255, 255)
}
.about {
display: flex;
padding: 30px;
}
.about img {
width: 40%;
}
.about p {
padding-left: 40px;
margin: auto;
}
.project{
width: 90%;
text-align: center;
color: rgb(80, 26, 26);
}
.project-image {
display: flex;
flex-wrap: wrap;
padding: 30px 10px ;
gap: 20px;
}
footer {
background-color: rgb(181, 122, 191);
padding: 20px;
text-align: center;
color: rgb(234, 206, 232);
}