-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagic.css
63 lines (58 loc) · 1.75 KB
/
magic.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
#magic-elem {
--theme: 240;
position: fixed;
left: 50%;
top: 30%;
transform: translateX(-50%);
border-radius: 5px;
text-align: center;
display: none;
width: 550px;
z-index: 9001;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
#magic-elem input {
border: none !important;
outline: none !important;
font-size: 26px !important;
width: 100% !important;
text-align: left !important;
background: hsl(var(--theme), 20%, 20%) !important;
color: white !important;
padding: 10px 30px !important;
font-family: 'Avenir', Helvetica, Arial, sans-serif !important;
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
margin: 0px !important;
box-sizing: border-box !important;
border-radius: 0px !important;
}
#magic-elem input:focus {
border: none !important;
}
.searchterm {
padding: 10px 20px;
text-align: left;
font-size: 18px !important;
font-family: 'Avenir', Helvetica, Arial, sans-serif !important;
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
font-weight: normal !important;
line-height: 25px !important;
}
.searchbox {
width: 100% !important;
background: hsl(var(--theme), 10%, 30%);
font-size: 18px !important;
color: #ccc !important;
font-family: 'Avenir', Helvetica, Arial, sans-serif !important;
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
font-weight: normal !important;
}
.searchterm:hover, .searchterm.psuedo-selected {
background: hsl(var(--theme), 10%, 25%);
cursor: pointer;
padding: 10px 20px;
color: #ccc !important;
}