-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.css
59 lines (57 loc) · 939 Bytes
/
work.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
.wrapper{
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:100;
}
input[type=text]
{
width:225px;
height:25px;
border-radius:4px;
border: 1px solid #ccc;
}
input[type=URL]
{
width:225px;
height:25px;
border-radius:4px;
border: 1px solid #ccc;
}
input[type=button]
{
width:100px;
height:30px;
border-radius:4px;
border: 1px solid #ccc;
}
input[type=button]:hover
{
background-color:lightblue;
}
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;
}
textarea
{
resize:none;
}