-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (56 loc) · 1014 Bytes
/
Copy pathstyle.css
File metadata and controls
58 lines (56 loc) · 1014 Bytes
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
body {
background-color: gold;
}
header{
border: 1px solid #003161;
padding: 30px;
text-align: center;
border-radius: 20px;
}
h1 {
color: darkgreen;
}
p{
font-style: italic;
}
img{
width: 35%;
border: 7px solid #AE445A;
border-radius: 40% 0 40%;
margin-bottom: 25px;
display: block;
margin: 0 auto;
}
img:hover {
transform: scale(1.1);
transition: all .5 ease-in-out;
}
button {
margin-top: 35px;
padding: 20px 40px;
background-color: coral;
color: white;
border: none;
border-radius: 40px 0 40px;
cursor: pointer;
}
button:hover{
transform: scale(1.1);
transition: all .5 ease-in-out;
background-color: rgb(152, 111, 192);
color:gold
}
.Biodata {
display: flex;
padding: 30px;
}
.Biodata p {
padding-left: 40px;
}
footer {
margin: top 30px;;
background-color: #003161;
padding: 20px;
text-align: center;
color: aliceblue;
}