-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (66 loc) · 1.25 KB
/
styles.css
File metadata and controls
73 lines (66 loc) · 1.25 KB
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
.mias_container {
position: fixed;
float: none;
right:0;
overflow: auto;
clear: both;
bottom: 0;
padding: 5px;
margin: 5px;
border: 1px solid transparent;
background-color: #000000;
color: #ffffff !important;
opacity: .75;
z-index: 1000;
right: 0px;
font-family: Helvetica, sans-serif !important;
}
.pullout {
width: 25%;
min-height: 100%;
position: fixed;
right: 0;
top: 0;
background-color: #000;
color: #fff;
margin-right: -102%;
z-index: 9999;
-webkit-transition: all .6s ease-in-out;
-moz-transition: all .6s ease-in-out;
-o-transition: all .6s ease-in-out;
-ms-transition: all .6s ease-in-out;
transition: all .6s ease-in-out;
}
.pullin {
width: 0%;
min-height: 100%;
position: fixed;
right: 0;
top: 0;
background-color: #000;
color: #fff;
margin-right: -102%;
z-index: 9999;
-webkit-transition: all .6s ease-in-out;
-moz-transition: all .6s ease-in-out;
-o-transition: all .6s ease-in-out;
-ms-transition: all .6s ease-in-out;
transition: all .6s ease-in-out;
}
.pullout:target {
margin-right: 0%;
}
#mias_pullout {
background-color: #000000;
opacity: .92;
padding: 5px;
}
.low {
font-color: green;
}
.med {
font-color: yellow;
}
.high {
font-color: red;
}