-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.css
54 lines (54 loc) · 877 Bytes
/
details.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
#d1
{
background-color: #f2f2f2;
width:500px;
padding:20px;
margin:6em auto;
border-radius:10px;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
body
{
background-image:url('detailsbg.jpg');
background-size:cover;
background-attachment:fixed;
background-repeat:no-repeat;
opacity:1;
}
table,tr,td,th
{
padding=:10px;
}
input[type=text]
{
width:225px;
height:25px;
border-radius:4px;
border: 1px solid #ccc;
}
input[type=tel]
{
width:225px;
height:25px;
border-radius:4px;
border: 1px solid #ccc;
}
input[type=email]
{
width:225px;
height:25px;
border-radius:4px;
border: 1px solid #ccc;
}
input[type=submit]
{
width:300px;
height:30px;
border-radius:4px;
border: 1px solid #ccc;
}
input[type=submit]:hover
{
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
background-color:#4CAF50;
}