-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (93 loc) · 1.79 KB
/
style.css
File metadata and controls
104 lines (93 loc) · 1.79 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
header {
border: 1px solid burlywood;
padding: 20px;
text-align: center;
}
header h1 {
color: darkblue;
}
header p {
font-style: italic;
}
header img {
width: 40%;
border: 2px solid rgb(80, 80, 77);
border-radius: 10%;
box-shadow: 2px 2px 40px rgb(139, 139, 115);
}
header img:hover {
transform: scale(.9);
transition: all .3s ease-in-out;
}
header button {
display: block;
margin: 30px auto;
padding: 12px 30px;
background-color: bisque;
color: darkslategray;
border-color: wheat;
border-radius: 20px;
box-shadow: 2px 2px 10px grey;
}
header button:hover {
background-color: grey;
color: bisque;
border-color: darkslategray;
transform: scale(.9);
transition: all .5s ease-in-out;
}
#about {
width: 95%;
margin: 40px auto;
display: flex;
}
.left-about {
width: 50%;
}
.left-about img {
width: 100%;
border-radius: 20px ;
margin-left: 10px;
box-shadow: 3px 3px 12px gray;
}
.right-about {
width: 50%;
padding: 40px;
}
.right-about h2 {
color: darkslategray;
}
#project {
width: 90%;
margin: 30px auto;
border: 1px solid grey;
text-align: center;
}
#project h2 {
color: rgb(204, 1, 1);
}
.project-image {
width: 90%;
display: flex;
flex-wrap: wrap;
}
.project-image img {
width: 25%;
padding: 20px;
margin: 0 auto;
}
.project-image img:hover {
transform: scale(.9);
transition: all .3 ease-in-out;
box-shadow: 4px 4px 10px rgb(173, 17, 17);
}
footer {
text-align: center;
padding: 20px;
background-color: grey;
color: rgb(0, 0, 0);
border-top: 3px solid rgb(17, 0, 168);
}
footer img {
width: 24px;
}