-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
119 lines (103 loc) · 1.93 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
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
letter-spacing: 1px;
font-size: 25px;
color: white;
font-weight: lighter;
}
body {
background-color: #111 !important;
padding: 5px;
}
#bring {
background-color: #222;
padding: 10px;
width: 75vw;
border: 1px solid var(--theme-color);
border-radius: 5px !important;
border-bottom: 1px solid var(--theme-color);
/* vvvv Temporary? */
/* font-family: "sf mono",ui-monospace,"menlo","inconsolata",monospace; */
transition: border-bottom 0.5s;
background-color: #222;
caret-color: var(--theme-color);
caret-shape: block;/*AA WHY DOES THIS NOT HAVE MUCH SUPPORT*/
}
#bring:focus {
border-bottom: 4px solid var(--theme-color);
outline: none;
/*transition: border-bottom 0.5s;*/
}
#bring-wrapper {
text-align: center;
}
#bring-wrapper button {
border-radius: 5px;
background-color: #000;
border: none;
margin: 10px;
border: 1px solid var(--theme-color);
padding-left: 20px;
padding-right: 20px;
padding-top: 5px;
padding-bottom: 5px;
transition: background-color 0.35s;
}
message {
background-color: #222;
border-radius: 10px;
display: block;
font-size: 20px;
padding: 5px;
margin-top: 5px;
overflow: auto;
}
a {
font-size: 20px;
color: #43f !important;
}
button:hover {
color: #000 !important;
background-color: var(--theme-color)
}
.help {
float: right;
opacity: 0.5;
margin-right: 20px;
margin-top: 10px;
}
window {
display: block;
background-color: #222;
padding: 10px;
border-radius: 10px;
width: 95vw;
height: 95vh;
position: fixed;
top: 0;
left: 0;
}
window>div {
overflow: auto
}
.win-close {
color: red;
}
.hidden {
display: none;
}
.results {
display: block;
border: none;
height: 70vh;
width: 80%;
}
dialog * {
color: #000;
margin: 5px;
}
#title {
font-style: italic;
text-decoration: line-through solid #111 7px;
font-size: 1.5em;
}