forked from Samikshapuri/Tenacity-final
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonate_in_cash.css
59 lines (52 loc) · 995 Bytes
/
donate_in_cash.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
body{
background-image: url('https://i.pinimg.com/originals/a8/a6/d3/a8a6d3d532baab30e80d9e8f6897f737.jpg');
}
.container{
width:400px;
height:600px;
position:absolute;
top:calc(50vh - 250px);
left:calc(50vw - 200px);
overflow:hidden;
}
.box{
position:absolute;
height:100%;
width:100%;
font-family:Helvetica;
color:#fff;
background:rgba(0,0,0,0.5);
padding:30px 0px;
}
.box input{
display:block;
width:300px;
margin:20px auto;
padding:15px;
background:rgba(0,0,0,0.2);
color:#fff;
border:0;
}
.box input:focus,.box input:active,.box button:focus,.box button:active{
outline:none;
}
.box h5{
text-align:left;
margin: 0 35px;
font-size: 15px;
font-weight: lighter;
}
.box button{
background:#742ECC;
border:0;
color:#fff;
padding:10px;
font-size:20px;
width:330px;
margin:20px auto;
display:block;
cursor:pointer;
}
.box button:active{
background:#27ae60;
}