-
Notifications
You must be signed in to change notification settings - Fork 0
/
.css
93 lines (81 loc) · 1.62 KB
/
.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body {
width: 80%;
max-width: 1024px;
margin: 0 auto;
background-color: rgb(84, 152, 155);
/* text-align: center; */
}
.container-padding50 {
padding-top: 50px;
}
.container-textinput {
border-radius: 50px;
outline: none;
border: none;
width: 80%;
display: inline-block;
padding: 20px;
font-size: 16px;
font-family: Helvetica, sans-serif;
background-color: rgb(84, 152, 155);
color: black;
border: 1px solid rgb(55, 90, 92);
}
.container-textinput:hover {
box-shadow: 0 14px 28px 0 rgb(0 0 0 / 20%), 0 9px 74px 0 rgb(0, 0, 0);
border: none;
}
.container-button {
width: 157px;
display: inline-block;
padding: 20px;
background-color: rgb(84, 152, 155);
color: white;
font-size: 16px;
font-family: Helvetica, sans-serif;
border: none;
border-radius: 40px;
color: black;
border: 1px solid rgb(55, 90, 92);
}
.container-button:hover {
box-shadow: 0 14px 28px 0 rgb(0 0 0 / 10%), 0 9px 64px 0 rgb(0, 0, 0);
border: none;
}
.container-image {
width: 30%;
display: block;
outline: none;
float: left;
margin-right: 3%;
}
footer {
position: fixed;
right: 50px;
bottom: 0;
height: 171px;
overflow: hidden;
font-family: sans-serif;
color: black;
font-weight: 600;
}
.fa {
padding: 20px;
font-size: 30px;
width: 30px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
border-radius: 50%;
}
.fa:hover {
opacity: 0.7;
}
.fa-linkedin {
background: #007bb5;
color: white;
}
.fa-github {
background: #080808;
color: white;
}