-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
110 lines (93 loc) · 1.52 KB
/
styles.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
html, body, .container-fluid {
background-color: #D6D8DC;
}
#button-selection-container {
margin: 20px auto;
width: 360px;
height: 180px;
}
#keyboard {
margin: 0;
padding: 0;
list-style: none;
}
#keyboard li {
float: right;
margin: 5px;
width: 80px;
height: 80px;
line-height: 80px;
text-align: center;
background: #fff;
border: 1px solid #f9f9f9;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
#keyboard li:hover {
position: relative;
top: 1px;
left: 1px;
border-color: #e5e5e5;
cursor: pointer;
}
.selected {
position: relative;
top: 1px;
left: 1px;
border-color: #e5e5e5;
background: #cecece !important;
cursor: pointer;
}
#settings-area {
margin: 71px auto;
width: 80%;
height: 150px;
border: 1px solid #6c757d;
-moz-border-radius: .4rem;
-webkit-border-radius: .4rem;
}
#settings-area-mode {
height: 110px;
text-align: center;
}
.button-mode-settings{
display: inline-flex;
margin: 30px;
}
.text-input {
font-size: 16px;
height: 110px !important;
}
.right-aligned-buttons{
margin: 10px;
text-align: end;
}
.left-aligned-buttons{
margin-left: 10px;
float: left;
}
#ports-error{
color: red;
margin: auto 10px;
vertical-align: middle
}
#ports-hint{
font-size: 22px;
text-align: start;
margin: auto 10px;
vertical-align: middle;
}
.command-input{
width: 90px;
text-align: center;
}
#action-buttons{
display: inline-flex;
float: right;
}
.modal-header {
border-bottom: 0 none;
}
.modal-footer {
border-top: 0 none;
}