-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_book.css
102 lines (88 loc) · 1.66 KB
/
add_book.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
.add{
border: none;
background-color: transparent;
cursor: pointer;
position: absolute;
bottom: 3%;
right: 30%;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
width: 191px;
height: 64px;
font-size: inherit;
font-family: inherit;
}
.add:hover{
transform: scale(1.1);
transition: 0.2s linear;
}
.cancel{
border: none;
background-color: transparent;
cursor: pointer;
position: absolute;
bottom: 3%;
left: 30%;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
width: 191px;
height: 64px;
font-size: inherit;
font-family: inherit;
}
.cancel:hover{
transform: scale(1.1);
transition: 0.2s linear;
}
.book, .author, .year{
position: absolute;
text-align: center;
left: calc(50% - 150px);
width: 300px;
font-size: inherit;
font-family: inherit;
background-color: transparent;
border: none;
}
.book{
top: calc(40% - 80px);
}
.author{
top: 40%;
}
.year{
top: calc(40% + 80px);
}
.frame{
position: absolute;
background-color: var(--color-gainsboro);
width: 100%;
height: 100%;
overflow: hidden;
text-align: center;
color: var(--color-black);
font-size: var(--font-size-13xl);
font-family: var(--font-jost);
}
.logo_group{
cursor: pointer;
position: absolute;
left: 2%;
top: 2%;
display: flex;
align-items: center;
justify-content: center;
gap: 5%;
font-size: 45px;
}
#logo{
font-size: calc(45px * 0.7);
}
.logo_group:hover{
transform: scale(1.1);
transition: 0.2s linear;
}