-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (57 loc) · 1.18 KB
/
styles.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
.pageContent {
width: 50%;
height: auto;
top: 30%;
padding: 8px;
background-color: var(--background-2);
display: grid;
grid-template-columns: 1fr 1fr;
margin: 16px -4px;
margin-left: 25%;
margin-right: 25%;
}
.pageContentSearch {
width: 50%;
height: auto;
top: 30%;
padding: 10px;
background-color: var(--background-2);
margin: 16px -4px;
margin-left: 25%;
margin-right: 25%;
margin-bottom: 0px;
border-bottom: 8px
solid var(--background-3);
}
.hoverBOX {
position: absolute;
top: 0;
left: 0;
display: flex;
flex-wrap: wrap;
width: 100%;
height: 100%;
align-items: center;
align-content: center;
justify-content: center;
gap: 0.5rem;
opacity: 0%;
transition: opacity 0.15s;
background: var(--background-1-trans);
}
.hoverBOX > * {
padding: 0.5rem;
background-color: #4c97ff;
border-radius: 0.5rem;
border: none;
font: inherit;
cursor: pointer;
color: white;
text-decoration: none;
pointer-events: auto;
transition: filter 0.15s;
filter: drop-shadow(0px 1px 3px #00000075);
}
.hoverBOX:hover {
opacity: 100%;
}