-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
113 lines (107 loc) · 1.53 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
html , body{
margin: 0;
padding: 0;
height: 100%;
}
#wrapper {
min-height:100vh;
position:relative;
}
#content {
padding-bottom: 10vh;
min-height: 30rem;
height: 100vh;
box-sizing: border-box;
}
.footer {
background:#000;
width:100vw;
height: 2.5rem;
position:absolute;
bottom:0;
left:0;
color: white;
font-size: 1.5rem;
}
.center {
text-align:center;
}
.input{
position: relative;
width: 25vw;
min-width: 21rem;
min-height: 3rem;
height: 2.3rem;
margin: .7rem auto;
font-size: 1.5rem;
}
.input > input[type="text"]{
position:relative;
height : 100%;
width: 100%;
border-style: solid;
border-width: .1rem;
border-radius: .3rem;
box-shadow: 0 .1rem .3rem 0;
border-color: burlywood;
font-size: 1.5rem;
}
.input input[type="checkbox"]{
width: 1.2rem;
height:1.2rem;
}
button{
margin: 0 0 0 .2rem;
float:right;
width:40%;
height:100%;
background-color: bisque;
border-radius: .7rem;
min-width: 6.5rem;
}
#buttons{
position:relative;
margin: 0 auto;
text-align: center;
width:25vw;
min-width: 21rem;
height: 2.5rem;
}
#advancedOptions{
height: initial;
border: rgb(84, 157, 163);
border-width: .2rem;
border-style: double;
border-radius: .5rem;
box-sizing: border-box;
font-size: 1.2rem;
}
a {
color: inherit;
text-decoration: inherit;
}
h1 {
margin-top :0;
}
.float-right{
float:right;
}
.float-left{
float:left;
}
.clearfix{
clear: both;
}
.inline-img{
height: 1.4rem;
width: 1.4rem;
}
#powerStatus{
background-color: #e9e7ef;
height: inherit;
border-radius: .5rem;
}
.powerON{
}
.powerOFF{
}