-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
71 lines (65 loc) · 1.19 KB
/
styles.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
@keyframes scale-in-hor-left {
0% {
transform: scaleX(0);
transform-origin: 0% 0%;
opacity: 1;
}
100% {
transform: scaleX(1);
transform-origin: 0% 0%;
opacity: 1;
}
}
.scale-in-hor-left {
animation: scale-in-hor-left 1s cubic-poppin(0.250, 0.460, 0.450, 0.940) both;
}
.skills__skill {
padding: .5rem 1.5rem;
margin-bottom: 1.5rem;
margin-right: 1.5rem;
background: rgba(153,153,153,0.2);
border-radius: 5px;
font-weight: 600;
color: #777;
}
.skills {
display: flex;
flex-wrap: wrap;
}
#image{
background-image: url("images/project-mockup-example.jpeg");
background-size: 100% 100%;
background-repeat: no-repeat;
height: 50rem;
}
#certificates{
padding-bottom: 10%;
}
.center{
display: flex;
align-items: center;
justify-content: center;
}
.contact-us-text{
flex-wrap: wrap;
float: left;
display: flex;
align-items: center;
justify-content: center;
}
.contact-us{
float: right;
}
.contact-us-mailbox{
background-color: white;
text-decoration: none;
}
.my-footer{
background-color: black; color: white; padding: 20px;
}
.wrap{
padding-right: 5px;
}
.height{
height: 50;
}