-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (89 loc) · 1.64 KB
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-style: 'sans-serif';
}
.app{
display: flex;
flex-direction: column;
}
.overlay {
background-color: rgba(0, 0, 0, 0.5);
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
position: absolute;
opacity: 0.5;
}
.segment-one {
top: 0;
left: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url('bg-image.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-blend-mode: darken;
z-index: 1;
}
.segment-two
{
height: 100vh;
}
.add-form{
display: flex;
flex-direction: column;
z-index: 3;
border: 5px solid;
border-radius: 20px;
margin-top: 2rem;
padding: 2rem;
background-color: rgb(52, 50, 50);
}
.segment-one {
color: white;
}
.options{
display: flex;
justify-content: space-around;
}
input, button{
margin-top: 8px;
margin-bottom: 8px;
}
.segment-two{
padding: 3rem;
display: flex;
flex-wrap: wrap;
align-items: baseline;
justify-content: space-around;
}
.book-item{
border: 5px;
background-color: aquamarine;
border-radius: 20px;
padding: 1rem;
margin: 2rem;
}
.Delete{
background-color: red;
color: white;
padding: 0.15rem;
border-radius: 5px;
}
.Read-Unread{
background-color: rgb(78, 146, 78);
color: white;
padding: 0.15rem;
border-radius: 5px;
}
.Delete:hover, .Read-Unread:hover{
opacity: 0.5;
}