-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (74 loc) · 1.26 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (74 loc) · 1.26 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
body{
background-color: #F5F5F5;
padding: 0px;
margin: 0px;
}
header, footer{
color:#FFF;
border: 1px solid #20911e;
box-shadow: 0 0 10px 5px #356b0b inset;
background-color: #68b12f;
}
nav ul{
padding: 10 20px;
margin: 0px;
list-style-type:none;
list-style-position:outside;
}
nav ul h1{
color: #FFF;
}
.flash-success, .flash-fail{
width: 500px;
padding: 10px;
margin: 10px auto;
text-align: center;
color: #FFF;
font-weight: bold;
font-size: 1.5em;
}
.flash-success{
background-color: green;
}
.flash-fail{
background-color: red;
}
.contact_form ul {
width:550px;
list-style-type:none;
list-style-position:outside;
margin:0px auto;
padding:0px;
}
.contact_form li{
padding:12px;
border-bottom:1px solid #eee;
position:relative;
}
.contact_form label {
width:150px;
margin-top: 3px;
display:inline-block;
float:left;
padding:3px;
font-weight: bold;
font-size: 1.2em;
}
.contact_form input {
height:20px;
width:220px;
padding:5px 8px;
}
.contact_form input[type='submit']{
height: 30px;
background-color: #68b12f;
color: white;
font-weight: bold;
padding: 6px 20px;
text-align: center;
text-shadow: 0 -1px 0 #396715;
}
.contact_form input[type='submit'] {
border: 1px solid #20911e;
box-shadow: 0 0 10px 5px #356b0b inset;
}