-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSplitter.css
More file actions
50 lines (44 loc) · 891 Bytes
/
Splitter.css
File metadata and controls
50 lines (44 loc) · 891 Bytes
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
#viewport {
left: 0;
right: 0;
bottom: 0;
top: 0;
position: fixed;
}
.unselectable {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.verticalSplitter {
width: 6px;
background: linear-gradient(to right, #21374c 0%, #004966 30%, #21374c 100%);
}
.horizontalSplitter {
height: 6px;
background: linear-gradient(to right, #21374c 0%, #004966 30%, #21374c 100%);
}
/*
.divstat {
margin: 0 auto 0 auto;
text-align: center;
margin-top: 100px;
padding: 20px;
border-radius: 6px;
background-color: #464646;
color: #fff;
width: 50%;
}
.spanstat {
font-size: 70px;
font-family: 'Segoe UI Light';
}
.h1stat {
margin-top: 0;
padding-bottom: 15px;
font-family: 'Segoe UI Light';
border-bottom: 1px solid #fff;
}
*/