-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
140 lines (116 loc) · 2.33 KB
/
stylesheet.css
File metadata and controls
140 lines (116 loc) · 2.33 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
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
* {
padding: 0;
margin: 0;
}
li {
list-style: none;
}
.header {
height: 65px;
border-bottom: 1px solid #dddddd;
}
.header-left {
float: left;
padding: 10px 60px;
color: #ED7000;
font-size: 37px;
font-family: 'Segoe UI';
/*font-weight: bold;*/
}
.header-right {
float: right;
color: #808080;
}
.header-right li {
float: left;
padding: 20px 30px;
border-left: 1px solid #dddddd;
}
.selected {
color: #ED7000;
}
.main {
min-width: 800px;
}
.contact-form {
width: 70%;
margin: 60px auto;
padding: 50px;
background-color: #F5F5F5;
color: #333;
}
.form-title {
text-align: center;
margin-bottom: 30px;
font-size: 30px;
}
.form-item {
padding: 20px 0 10px 0;
font-weight: bold;
}
input[type="text"] {
width: 30%;
border: 1px solid #ccc;
border-radius: 4px;
padding: 6px 12px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
font-size: 14px;
line-height: 1.428571429;
color: #555;
}
input[type="submit"] {
margin-top: 30px;
width: 30%;
border: 1px solid #5cb85c;
border-radius: 4px;
padding: 12px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
font-size: 14px;
line-height: 1.428571429;
color: white;
background-color: #5cb85c;
}
textarea {
width: 90%;
height: 100px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 6px 12px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
font-size: 14px;
line-height: 1.428571429;
color: #555;
}
.thanks-message {
margin-top: 50px;
text-align: center;
font-size: 24px;
}
.display-contact {
width: 70%;
margin: 30px auto;
padding: 50px;
background-color: #F5F5F5;
color: #333;
}
.footer {
height: 200px;
clear: left;
border-top: 1px solid #dddddd;
}
.footer-left {
float: left;
width: 200px;
padding: 30px 100px;
}
.footer-left li {
margin-bottom: 5px;
color: #808080;
border-bottom: 1px dotted #808080;
}
.like-box {
float: left;
padding: 30px;
}