-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (80 loc) · 1.39 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
@media (prefers-color-scheme: light) {
body {
background-color: #f3f3f3;
color: black;
}
#dialogbox {
background: white;
}
#addBtnImg {
color: black;
}
}
@media (prefers-color-scheme: dark) {
body {
background-color: #181818;
color: white;
}
#dialogbox {
background: black;
}
#addBtnImg {
color: white;
}
}
/* Shortcuts */
#shortcuts-container {
position: absolute;
left: 50%;
top: 60%;
transform: translate(-50%, -50%);
display: flex;
list-style: none;
padding: 0;
}
.shortcut {
margin-right: 10px;
padding: 5px;
border: 1px solid #ccc;
border-radius: 5px;
display: grid;
}
.shortcut a {
margin-right: 5px;
color: #3482AB;
}
.shortcut a:hover {
color: #48B3EB;
}
/* favicon img */
.shortcut img {
display: block;
margin: 0 auto;
}
/* delete button */
.shortcut button {
cursor: pointer;
font-family: "Segoe MDL2 Assets";
color: red;
}
#addBtn {
cursor: pointer;
background-color: transparent;
border: none;
position: fixed;
right: 10px;
bottom: 10px;
}
#addBtnImg {
font-family: "Segoe MDL2 Assets";
font-size: 20px;
}
#header {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: flex;
align-items: center;
font-size: 35px;
}