-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
161 lines (123 loc) · 2.07 KB
/
contact.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
*{
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
box-sizing: border-box;
}
/* Background pattern from Subtle Patterns */
header {
background: #fff;
margin-top: 0;
height: 90px;
border-bottom: 2px solid #777;
width: 100%;
font-family: 'Georgia', Times, Times New Roman, serif;
}
body {
background-image: url("images/dust_scratches.png");
}
.wrapper {
width : 960px;
margin-left : auto;
margin-right : auto;
}
#myName {
background: #4aaaa5;
font-family: 'Georgia', Times, Times New Roman, serif;
color: white;
text-align: center;
width: 33%;
height: 100%;
font-size: 24px;
padding-top: 3%;
padding-bottom: 2%;
font-weight: 900;
float : left;
}
nav {
color: #777;
float: right;
margin: 25px;
font-size: 14px;
}
#about, #portfolio, #contact {
display: inline;
border-right: #777 solid 1px;
padding-left: 3px;
overflow: auto;
clear: both;
}
a:hover {
color: pink;
}
.form {
margin-top: 5%;
margin-bottom: 5%;
background: #fff;
width: 650px;
padding: 20px;
float : left;
}
label {
display: inline-block;
width: 90px;
font-family: Arial;
font-size: 14px;
color: #777;
}
input, textarea {
font: 14px sans-serif;
width: 610px;
border: 1px solid lightgrey;
}
input:focus, textarea:focus {
border-color: #000;
}
textarea {
vertical-align: top;
height: 10em;
}
button {
margin-top: 5%;
}
.connect {
background: #fff;
width: 270px;
margin-top: 5%;
padding: 20px;
float: right;
}
h1 {
color: #4aaaa5;
border-bottom: #777 2px solid;
font-family: 'Georgia', Times, Times New Roman, serif;
font-size: 1.5em;
font-weight: 900;
padding-bottom: 20px;
}
h3 {
color: #4aaaa5;
border-bottom: #777 2px solid;
font-family: 'Georgia', Times, Times New Roman, serif;
font-weight: 900;
font-size: 1.25em;
padding-bottom: 10px;
}
#gitHub {
padding-right: 3px;
}
#linkedIn {
padding-right: 3px;
}
#stackOverflow {
height: 62px;
width: 62px;
}
footer {
overflow: auto;
clear: both;
text-align: center;
background: #777;
color: #fff;
border-top: 8px #4aaaa5 solid;
padding: 40px;
font-size: 10px;
}