-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle_contact.css
80 lines (70 loc) · 1.36 KB
/
style_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
/* linear gradient not responsive*/
/* color pallete used is: -----*/
/* #E63946 --red
#F1FAEE --white
#A8DADC --lightest blue shade
#457B9D --middle blue shade
#1D3557 --darkest blue shade
*/
body{
background-image: linear-gradient(to right, rgb(241, 250, 238), rgb(168, 218, 220));
}
h1{
font-size: 94px;
margin-top: 60px;
margin-left: 40px;
color: #1D3557;
}
.message{
margin-left: 30px;
font-size: 34px;
margin-top: 20px;
color: #457B9D;
width: 60%;
}
.icons{
display: flex;
justify-content: center;
align-items: center;
}
.icons i{
font-size: 2em;
padding: 1em;
}
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}
/* remove comment tag from next line if want fname and lname on same line */
/*#fname{
width: 41%;
}
#lname{
width: 45%;
margin-left: 10px;
}
*/
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
.container {
border-radius: 5px;
background-color: rgb(168, 218, 220);
padding: 20px;
}