forked from ScroogeD2/owmidiconverter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconverterpagecss.css
77 lines (71 loc) · 1.24 KB
/
converterpagecss.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
textarea {
resize: vertical;
width: 100%;
}
body, textarea {
color: #CCCCCC;
background-color: #222222;
}
a {
color: lightblue;
}
.center {
width: 45%;
margin: 0 auto;
text-align: center;
}
.options {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.textInput, .checkboxInput {
width: 40px;
height: 16px;
text-align: center;
}
.dropdownInput {
width: 100px;
height: 22px;
text-align: center;
}
.tooltipWrapper {
justify-self: right;
border-bottom: 10px solid transparent;
border-right: 5px solid transparent;
}
.tooltip {
position: relative;
border-bottom: 1px dotted white;
}
.tooltipText {
visibility: hidden;
width: 250px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 5px;
position: absolute;
z-index: 1;
top: -5px;
right: 105%;
}
.tooltip:hover .tooltipText {
visibility: visible;
}
#collapseButton {
width: 100%;
margin-bottom: 10px;
font-size: 15px;
font-weight: bold;
color: lightblue;
background-color: transparent;
border: none;
cursor: pointer;
}
#extraOptions {
display: none;
}
#scriptOutput-textarea {
margin-bottom: 20px;
}