-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
128 lines (126 loc) · 2.55 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
.background {
width: 100%;
height: 100vh;
position: fixed;
filter: blur(2px) brightness(50%);
z-index: -1;
top: 0;
left: 0;
background: url("https://raw.githubusercontent.com/rudoyo/bookLibrary/main/images/background.jpg")
no-repeat;
background-size: cover;
}
.container {
width: 80%;
margin: auto;
padding-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.boxes {
border: 1px solid white;
min-width: 150px;
max-width: fit-content;
min-height: 200px;
max-height: fit-content;
display: flex;
flex-direction: column;
margin: 5px;
align-items: center;
justify-content: center;
box-shadow: 0 0 10px silver;
transition: 300ms all;
background-size: cover;
background-position: center;
white-space: break-spaces;
/*background-color: #334145; */
}
.box-content {
color: blanchedalmond;
padding: 10px 5px;
text-align: center;
width: 100%;
word-wrap: break-word;
transition: 300ms all;
}
.Add {
border: 1px solid white;
min-width: 150px;
max-width: fit-content;
min-height: 200px;
max-height: fit-content;
display: flex;
flex-direction: column;
margin: 5px;
align-items: center;
justify-content: center;
box-shadow: 0 0 10px silver;
transition: 300ms all;
background-size: cover;
background-position: center;
white-space: break-spaces;
}
.add {
background-image: url(https://raw.githubusercontent.com/rudoyo/bookLibrary/main/images/add.png);
width: 100%;
height: 100%;
background-position-x: center;
background-position-y: center;
z-index: -1;
top: 0;
left: 0;
}
.box-contents {
width: 100%;
height: 100%;
z-index: -1;
background-size: cover;
}
.formulaContainer {
width: 50%;
margin: auto;
display: flex;
padding-top: 20px;
position: fixed;
position: relative;
top: -123px;
flex-wrap: wrap;
justify-content: center;
}
.formulaboxes {
border: 1px solid red;
min-width: 150px;
max-width: fit-content;
min-height: 50vh;
max-height: fit-content;
display: flex;
flex-direction: column;
margin: 5px;
align-items: center;
justify-content: center;
box-shadow: 0 0 10px silver;
transition: 300ms all;
background-size: cover;
background-position: center;
white-space: break-spaces;
/*background-color: #334145; */
}
label {
color: red;
font-weight: bold;
}
.delete {
margin-top: 12%;
display: flex;
justify-content: flex-end;
background-color: rgba(255, 255, 255, 0);
}
button {
background-color: rgba(255, 255, 255, 0);
color: aliceblue;
}
.read {
background-color: rgba(255, 255, 255, 0);
color: lavender;
}