-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreturn.css
More file actions
63 lines (57 loc) · 1.25 KB
/
return.css
File metadata and controls
63 lines (57 loc) · 1.25 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
body{
background-image: linear-gradient(180deg, rgba(0, 0, 0,0.9), rgba(0,0,0,0.5)),url("../img/book store.jpg") ;
background-position: center;
background-size:cover;
min-height: 50rem;
}
main{
width: 90%;
margin: 10rem auto;
}
.title{
color: burlywood;
font-size: 4rem;
text-align: center;
}
.book-name, .Borrower_name, .Borrower_Id, .phone_number, .return_date{
color: white;
margin-left: 2rem;
}
.book{
display: flex;
align-items: center;
margin: 2rem 0 0.5rem 0;
}
.book input{
min-width: 2.5rem;
min-height: 2.5rem;
background: rgba(210, 210, 210, 0.5);
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
border-radius: 0.3rem;
cursor: pointer;
position: relative;
}
.book input:checked{
background-color: red;
}
.return{
margin-top: 2rem;
display: flex;
justify-content: end;
}
.return-btn{
color: white;
background-color: burlywood;
font-size: 2rem;
padding: 0.8rem 2rem;
border-radius: 0.5rem;
font-weight: 550;
/* border: 2px solid transparent; */
}
.return-btn:hover{
background-color: white;
color: burlywood;
border: 2px solid burlywood;
}