-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (100 loc) · 2.07 KB
/
style.css
File metadata and controls
121 lines (100 loc) · 2.07 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
.contactform{
}
.box1{
background-color: lightgrey;
width: 500px;
border: 7px solid green;
padding: 25px;
margin: 60px 140px;
font-size:15px;
text-align: justify;
text-justify: inter-word;
}
.box2{
background-color: lightgrey;
width: 300px;
border: 18px solid grey;
padding: 25px;
margin: -560px 500px 100px 900px;
text-align: center;
text-justify: inter-word;
height:300px;
font-family:'Open Sans', Arial, sans-serif;
font-weight:200;
line-height:1.6em;
color:#656565;
font-size: 1.3em;
}
.button {
padding: 12px 25px;
font-size: 15px;
text-align: center;
cursor: pointer;
outline: none;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 12px;
box-shadow: 0 7px #999;
}
.button:hover {background-color: #3e8e41}
.button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
#rcorners2 {
border-radius: 25px;
border: 2px solid #73AD21;
padding: 20px;
width: 450px;
}
/*
input[type=text] {
width: 70%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border-radius: 25px;
border: 3px solid #ccc;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: none;
}
input[type=text]:focus {
border: 4px solid green;
}
*/
.input {
font-size:1.0em;
font-family:"Segoe UI";
color:black;
width: 88%;
padding: 5px 10px;
margin: 4.5px 0;
-moz-box-shadow: inset 0 0 1px rgba(0,0,0,0.2);
-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
box-shadow: inner 0 0 0.5px rgba(0, 0, 0, 0.2);
-webkit-border-radius: 0.5px;
-moz-border-radius: 0.5px;
box-sizing: border-box;
border-radius: 7px;
border: 0.3px solid #ccc;
}
input:focus {
outline: none !important;
border:1px solid green;
box-shadow: 0 0 3px #719ECE;
}
textarea:focus {
outline: none !important;
border:0.5px solid green;
box-shadow: 0 0 8px #719ECE;
}
body {
font-family:'Open Sans', Arial, sans-serif;
font-weight:150;
line-height:1.6em;
color:#656565;
font-size: 1.4em;
}