-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscanner.css
55 lines (55 loc) · 1.02 KB
/
scanner.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
body, html {
padding: 0;
margin: 0;
font-family: 'Helvetica Neue', 'Calibri', Arial, sans-serif;
height: 100%;
}
body {
background: #263238;
display: flex;
align-items: stretch;
justify-content: stretch;
height: 100%;
}
.sidebar {
background: #eceff1;
width: 25%;
display: flex;
flex-direction: column;
justify-content: flex-start;
overflow: auto;
}
.sidebar h2 {
font-weight: normal;
font-size: 1.0rem;
background: #607d8b;
color: #fff;
padding: 10px;
margin: 0;
position: sticky;
}
.preview-container {
flex-direction: column;
align-items: center;
justify-content: center;
display: flex;
width: 100%;
overflow: hidden;
}
.btn{
width: 95%;
margin: 6px 8px;
padding: 0;
position: sticky;
}
section:first{
text-align: center;
}
td{
min-width: 30px;
text-align: start;
padding: 2px 8px;
}
td:not(tr:last-child){
border-left: 1px #ccc solid;
}