forked from dinex86/FOV-Calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (57 loc) · 917 Bytes
/
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
body{
font-family: "OpenSans", open-sans, Tahoma;
margin: 3vmin;
}
body>div:first-child {
justify-content: center;
display: flex;
flex-wrap: wrap;
}
#screensize-handle, #distance-handle, #bezel-handle, #radius-handle {
width: 2em;
height: 1.5em;
top: 50%;
margin-top: -.75em;
margin-left: -1em;
text-align: center;
line-height: 1.5em;
}
#radius-handle {
width: 4em;
}
label {
display: block;
margin: 1em 0 0.3em 0;
font-weight: bold;
}
fieldset label:first-of-type {
margin-top: 0;
}
.ui-slider {
margin-top: 0.7em;
}
fieldset {
border: 1px solid silver;
padding: 1em 1.3em;
min-width: 300px;
}
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
ul li {
margin-bottom: 0.6em;
display: grid;
}
ul li span:first-child {
display: block;
margin-bottom: 0.2em;
}
ul li span:first-child::after {
content: ':';
}
ul li span:last-child {
font-weight: bold;
padding-left: 1.5em;
}