generated from rwhscott/uv-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
95 lines (85 loc) · 1.57 KB
/
index.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
body {
margin: 0px;
padding: 0px;
width: 100vw;
height: 100vh;
background-color: #000000;
}
.uv:focus {
outline: none;
box-shadow: none;
}
#uv {
width: 100%;
height: 100%;
}
#options {
margin: 0 0 0 10px;
padding: 0px;
height: 8%;
}
#manifestSelect {
width: 300px;
margin: 1px 0 0 0;
font-size: 12px;
height: 22px;
line-height: 22px;
padding: 0;
border: none;
}
#manifest {
width: 300px;
margin: 1px 0 0 0;
font-size: 12px;
height: 22px;
line-height: 22px;
padding: 0 0 0 5px;
border: none;
color: #565656;
background-color: #C7C7C7;
}
#setManifestButton {
display: inline-block;
padding: 5px 5px;
margin-bottom: 0;
font-size: 12px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
vertical-align: middle;
cursor: pointer;
border: 1px solid transparent;
color: #ffffff;
background-color: #14a4c3;
border-color: #14a4c3;
}
#setManifestButton:hover,
#setManifestButton:focus,
#setManifestButton:active {
color: #ffffff;
background-color: #10859e;
border-color: #0e758b;
}
#uv-container {
position: relative;
width: 100%;
height: 100%;
}
#logout {
top: 0;
left: 0;
position: absolute;
z-index: 99999999;
}
#logout a {
font-family: sans-serif;
font-size: 12px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
vertical-align: middle;
border: 1px solid transparent;
color: #ffffff;
padding: 10px;
display: inline-block;
}