This repository was archived by the owner on Dec 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
110 lines (108 loc) · 2.48 KB
/
stylesheet.css
File metadata and controls
110 lines (108 loc) · 2.48 KB
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{
height: 100%;
padding: 0;
margin: 0;
}
button:disabled{
color: #fff;
background-color: #6c757d;
border-color: #6c757d;
}
#graphWrapper{
border-radius: .25rem;
background-color: #fff0f0;
padding: 1rem;
margin: 1rem;
height: 75%;
}
#graph{
height: 100%;
}
#time{
float: right;
}
#input{
padding: 0 1rem;
display: flex;
flex-direction: row;
}
label.option{
margin: 0 1rem;
}
#status{
font-family: "Adobe Devanagari", sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
-webkit-tap-highlight-color: transparent;
box-sizing: border-box;
position: relative;
padding: 1rem;
margin: 1rem;
border: 2px solid transparent;
border-radius: .25rem;
}
.connected{
color: #0f5132;
background-color: #d1e7dd;
border-color: #badbcc;
}
.disconnected{
color: #842029;
background-color: #f8d7da;
border-color: #f5c2c7;
}
button{
-webkit-tap-highlight-color: transparent;
box-sizing: border-box;
font-family: inherit;
text-transform: none;
display: inline-block;
font-weight: 400;
line-height: 1.5;
text-align: center;
text-decoration: none;
vertical-align: middle;
user-select: none;
border: 1px solid #198754;
padding: .375rem .75rem;
font-size: 1rem;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
color: #fff;
background-color: #198754;
cursor: pointer;
margin: .25rem .125rem;
}
select{
box-sizing: border-box;
font-family: inherit;
text-transform: none;
/*display: block;*/
/*width: 100%;*/
padding: .375rem 1.75rem .375rem .75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
vertical-align: middle;
background-color: #fff;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right .75rem center;
background-size: 16px 12px;
border: 1px solid #ced4da;
border-radius: .25rem;
appearance: none;
margin: 0;
}
div.select-label{
display: block;
}
label{
display: flex;
flex-direction: column;
width: 200px;
margin: 0 1rem;
text-align: center;
}