-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (57 loc) · 939 Bytes
/
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
@import url("agregore://theme/style.css");
form {
display: flex;
flex-direction: column;
align-items: stretch;
margin: 1em auto;
padding: 1em;
border: 0.5em dashed var(--ag-theme-primary);
}
label {
margin: 0.5em;
display: flex;
justify-content: space-between;
}
button {
background: var(--ag-theme-primary);
border: none;
}
button:hover, button:active {
background: var(--ag-theme-secondary);
}
input[type=file] {
display: block;
margin: 0.5em;
}
section {
padding: 1em 0px;
text-align: center;
overflow-x: auto;
}
#loader {
display: inline-block;
font-size: 4em;
transform-origin: 50% 50%;
animation: spin 2s infinite linear;
}
@keyframes spin {
0% {
opacity: 1;
transform: rotate(0deg);
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
transform: rotate(360deg);
}
}
#url {
user-select: all;
font-weight: bold;
padding: 0.5em;
}
.hidden {
display: none;
}