-
Notifications
You must be signed in to change notification settings - Fork 0
/
book_info.css
116 lines (107 loc) · 2.22 KB
/
book_info.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.book_info{
cursor: pointer;
position: absolute;
visibility: hidden;
width: 300px;
height: 600px;
top: calc(55% - 300px);
left: 50%;
}
.title, .author, .year, .owner, .return_date{
position: relative;
height: 45px;
width: 300px;
text-align: center;
font-size: 25px;
}
.owner{
cursor: pointer;
}
.close{
border: none;
background-color: transparent;
cursor: pointer;
position: absolute;
bottom: 0;
left: calc(50% - 50px);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 45px;
width: 100px;
font-family: inherit;
font-size: inherit;
}
.delete{
border: none;
background-color: transparent;
cursor: pointer;
position: absolute;
bottom: 60px;
left: calc(50% - 50px);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 45px;
width: 100px;
font-family: inherit;
font-size: inherit;
color: crimson;
}
.issue{
visibility: hidden;
border: none;
background-color: transparent;
cursor: pointer;
position: absolute;
bottom: 120px;
left: calc(50% - 50px);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 45px;
width: 100px;
font-family: inherit;
font-size: inherit;
}
.redact_button{
border: none;
background-color: transparent;
cursor: pointer;
position: absolute;
bottom: 180px;
left: calc(50% - 50px);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 45px;
width: 100px;
font-family: inherit;
font-size: inherit;
}
.return{
visibility: hidden;
border: none;
background-color: transparent;
cursor: pointer;
position: absolute;
bottom: 120px;
left: calc(50% - 50px);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 45px;
width: 100px;
font-family: inherit;
font-size: inherit;
}
.close:hover, .delete:hover, .return:hover,
.issue:hover, .owner:hover, .redact_button:hover{
transform: scale(1.1);
transition: 0.2s linear;
}