-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (98 loc) · 1.7 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
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
html {
margin: 0;
padding: 0;
}
body {
font-family: Noto Sans, sans-serif;
background: RGBA(220, 220, 220, 1);
background-image: linear-gradient(
45deg,
#d1d1d1 25%,
#cccccc 25%,
#cccccc 50%,
#d1d1d1 50%,
#d1d1d1 75%,
#cccccc 75%,
#cccccc 100%
);
background-size: 56.57px 56.57px;
margin: 0;
padding: 0;
}
.controlbox {
background: RGBA(255, 255, 255, 0.5);
padding: px;
padding-left: 8px;
padding-right: 8px;
margin: 2px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
opacity: 1;
-webkit-appearance: "Always Show Up/Down Arrows";
}
input {
border: 0.1em solid RGBA(0, 0, 0, 0.25);
border-radius: 15px;
padding-left: 6px;
color: grey;
}
.medinput {
width: 90px;
font-size: 10px;
}
.longinput {
width: 98.5%;
}
#controls {
position: absolute;
background: RGBA(220, 220, 220, 0.75);
text-align: right;
right: 0;
left: 0;
bottom: 0px;
margin: 5px;
font-size: 10px;
vertical-align: bottom;
color: #555;
/* min-width: 550px; */
}
#image {
text-align: center;
max-width: 98vw;
max-height: 98vh;
padding: 0;
margin: 1vh;
overflow: hidden;
}
#image img {
max-width: 100%;
max-height: 100%;
}
#theImage {
}
#theImage:hover {
}
button,
input,
div {
margin: 2px;
vertical-align: middle;
}
label {
font-size: 11px;
}
input {
text-align: center;
padding-left: 0px;
padding-right: 0px;
}
#buttonGroup {
display: none;
}
.controlboxlabel {
float: left;
font-size: 12px;
margin-right: 15px;
}