-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (42 loc) · 851 Bytes
/
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
body {
background-color: #e6e6e6;
position: relative;
}
hr {
border: 1px solid lightgray;
}
.light-border {
background-color: #fff;
border: 1px solid rgb(223,223,223);
}
.light-side-border {
background-color: #fff;
border-style: solid;
border-width: 0px 1px;
border-color: rgb(223,223,223);
}
.about {
background-color: rgb(247, 247, 247);
}
.portfolio {
background-color: #71C171;
}
.img-link-container {
overflow: hidden;
background-color: black;
}
.img-link {
opacity: 0.5;
transition: all 0.5s ease-in-out;
}
.img-link:hover {
opacity: 1;
-webkit-transform: scale(1.05); /* Safari and Chrome */
-moz-transform: scale(1.05); /* Firefox */
-ms-transform: scale(1.05); /* IE 9 */
-o-transform: scale(1.05); /* Opera */
transform: scale(1.05);
}
.contact-me, .footer {
background-color: #f0ad4e;
}